From 4ebca1d7850e2d9735d00da91dc6efc9a93ff58f Mon Sep 17 00:00:00 2001 From: Phil Longstaff Date: Thu, 4 Mar 2010 21:39:47 +0000 Subject: [PATCH] Add missing NULL sentinel at end of g_strconcat() function call git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18824 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/libqof/qof/qof-win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libqof/qof/qof-win32.c b/src/libqof/qof/qof-win32.c index 6658bbfc0b..70933c612e 100644 --- a/src/libqof/qof/qof-win32.c +++ b/src/libqof/qof/qof-win32.c @@ -104,7 +104,7 @@ qof_win32_get_time_format(QofWin32Picture picture) case QOF_WIN32_PICTURE_DATETIME: tmp1 = get_win32_locale_string(LOCALE_SSHORTDATE); tmp2 = get_win32_locale_string(LOCALE_STIMEFORMAT); - locale_string = g_strconcat(tmp1, " ", tmp2); + locale_string = g_strconcat(tmp1, " ", tmp2, NULL); g_free(tmp1); g_free(tmp2); break;