mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-25 08:36:52 +02:00
Fix non-initialized variable in glib/gspawn-win32.c
This commit is contained in:
parent
499cb2cd1a
commit
eaf37d63d0
@ -978,7 +978,7 @@ g_spawn_sync (const gchar *working_directory,
|
|||||||
gint reportpipe = -1;
|
gint reportpipe = -1;
|
||||||
GIOChannel *outchannel = NULL;
|
GIOChannel *outchannel = NULL;
|
||||||
GIOChannel *errchannel = NULL;
|
GIOChannel *errchannel = NULL;
|
||||||
GPollFD outfd, errfd;
|
GPollFD outfd = { -1, 0, 0 }, errfd = { -1, 0, 0 };
|
||||||
GPollFD fds[2];
|
GPollFD fds[2];
|
||||||
gint nfds;
|
gint nfds;
|
||||||
gint outindex = -1;
|
gint outindex = -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user