summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorHaiyue Wang <haiyue.wang@intel.com>2022-04-24 18:50:35 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2022-04-28 08:51:56 +0200
commit5c08edd1fab9b6e5b02bedecb1130199ab75a29c (patch)
tree84e16b558c41cb4d0c1fcddb01811cfb8e9e398b /util
parentcf6f26d6f9b2015ee12b4604b79359e76784163a (diff)
error-report: fix g_date_time_format assertion
The 'g_get_real_time' returns the number of microseconds since January 1, 1970 UTC, but 'g_date_time_new_from_unix_utc' needs the number of seconds, so it will cause the invalid time input: (process:279642): GLib-CRITICAL (recursed) **: g_date_time_format: assertion 'datetime != NULL' failed Call function 'g_date_time_new_now_utc' instead, it has the same result as 'g_date_time_new_from_unix_utc(g_get_real_time() / G_USEC_PER_SEC)'; Fixes: 73dab893b569 ("error-report: replace deprecated g_get_current_time() with glib >= 2.62") Signed-off-by: Haiyue Wang <haiyue.wang@intel.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220424105036.291370-1-haiyue.wang@intel.com>
Diffstat (limited to 'util')
-rw-r--r--util/error-report.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/error-report.c b/util/error-report.c
index dbadaf206d..5edb2e6040 100644
--- a/util/error-report.c
+++ b/util/error-report.c
@@ -173,7 +173,7 @@ static char *
real_time_iso8601(void)
{
#if GLIB_CHECK_VERSION(2,62,0)
- g_autoptr(GDateTime) dt = g_date_time_new_from_unix_utc(g_get_real_time());
+ g_autoptr(GDateTime) dt = g_date_time_new_now_utc();
/* ignore deprecation warning, since GLIB_VERSION_MAX_ALLOWED is 2.56 */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"