NULL terminate the arg list to g_strconcat() (thanx raph).

Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
        (thanx raph).
This commit is contained in:
Tim Janik 1998-08-17 05:49:13 +00:00 committed by Tim Janik
parent 477f14037c
commit d2716f8bfd
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -1,3 +1,8 @@
Mon Aug 17 07:47:43 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
(thanx raph).
Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* NEWS: updated for 1.1.2

View File

@ -330,7 +330,7 @@ gtk_init (int *argc,
module_name[2] == 'b'))
module_name = g_strdup (module_name);
else
module_name = g_strconcat ("lib", module_name, ".so");
module_name = g_strconcat ("lib", module_name, ".so", NULL);
(*argv)[i] = NULL;
if (g_module_supported ())