mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-29 06:44:27 +08:00
* runtime/main.c (store_exe_path): Don't crash if argv0 is NULL.
From-SVN: r142526
This commit is contained in:
parent
230f375563
commit
8b86bdbc02
@ -1,3 +1,7 @@
|
||||
2008-12-06 Adam Nemet <anemet@caviumnetworks.com>
|
||||
|
||||
* runtime/main.c (store_exe_path): Don't crash if argv0 is NULL.
|
||||
|
||||
2008-12-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/38291
|
||||
|
@ -111,7 +111,8 @@ store_exe_path (const char * argv0)
|
||||
|
||||
char buf[PATH_MAX], *cwd, *path;
|
||||
|
||||
if (argv0[0] == '/')
|
||||
/* On the simulator argv is not set. */
|
||||
if (argv0 == NULL || argv0[0] == '/')
|
||||
{
|
||||
exe_path = argv0;
|
||||
please_free_exe_path_when_done = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user