mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
Guard against _glib_get_installation_directory() returning NULL. In that
2008-02-24 Tor Lillqvist <tml@novell.com> * glib/gspawn-win32.c: Guard against _glib_get_installation_directory() returning NULL. In that case, just use the name of the helper process executable without path. svn path=/trunk/; revision=6576
This commit is contained in:
parent
17640e78d3
commit
96c7abe76a
@ -592,8 +592,13 @@ do_spawn_with_pipes (gint *exit_status,
|
||||
helper_process = HELPER_PROCESS ".exe";
|
||||
|
||||
glib_top = _glib_get_installation_directory ();
|
||||
if (glib_top != NULL)
|
||||
{
|
||||
helper_process = g_build_filename (glib_top, "bin", helper_process, NULL);
|
||||
g_free (glib_top);
|
||||
}
|
||||
else
|
||||
helper_process = g_strdup (helper_process);
|
||||
|
||||
new_argv[0] = helper_process;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user