fixed stupid (brown paper bag) bug with missing NULL on g_strconcat

Original commit message from CVS:
fixed stupid (brown paper bag) bug with missing NULL on g_strconcat
This commit is contained in:
Erik Walthinsen 2001-01-01 02:46:56 +00:00
parent 70d57d84b1
commit e154186bc4

View file

@ -40,7 +40,7 @@ void gst_cpuid_i386(int,long *,long *,long *,long *);
static gchar *stringcat (gchar *a,gchar *b) {
gchar *c;
if (a) {
c = g_strconcat(a,b);
c = g_strconcat(a,b,NULL);
g_free(a);
} else
c = g_strdup(b);