Don't try to set std_out and std_err if they are NULL
This commit is contained in:
parent
5412a244ba
commit
029d78536c
@ -1067,8 +1067,10 @@ gboolean win32_spawn(const gchar *dir, gchar **argv, gchar **env, GSpawnFlags fl
|
|||||||
fail = ret == -1 && errno;
|
fail = ret == -1 && errno;
|
||||||
if (!fail)
|
if (!fail)
|
||||||
{
|
{
|
||||||
g_file_get_contents(tmp_file, std_out, NULL, NULL);
|
if (std_out != NULL)
|
||||||
g_file_get_contents(tmp_errfile, std_err, NULL, NULL);
|
g_file_get_contents(tmp_file, std_out, NULL, NULL);
|
||||||
|
if (std_err != NULL)
|
||||||
|
g_file_get_contents(tmp_errfile, std_err, NULL, NULL);
|
||||||
}
|
}
|
||||||
else if (error)
|
else if (error)
|
||||||
g_set_error_literal(error, G_SPAWN_ERROR, errno, g_strerror(errno));
|
g_set_error_literal(error, G_SPAWN_ERROR, errno, g_strerror(errno));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user