mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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
This commit is contained in:
parent
5cedef8da8
commit
4ebca1d785
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user