diff options
author | Gary Benson <gbenson@redhat.com> | 2015-06-24 16:06:49 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2015-06-25 09:31:07 +0100 |
commit | a3be80c3c54e9e2c0d8e9a1ff77c931cd8ebeb60 (patch) | |
tree | 21d6dbc895dd38aebad7bcfdd748dc0284817e15 /gdb/infrun.c | |
parent | 53f7371c77f50aea587cf06bf4cc79273ee1382e (diff) | |
download | gdb-a3be80c3c54e9e2c0d8e9a1ff77c931cd8ebeb60.zip gdb-a3be80c3c54e9e2c0d8e9a1ff77c931cd8ebeb60.tar.gz gdb-a3be80c3c54e9e2c0d8e9a1ff77c931cd8ebeb60.tar.bz2 |
Remove gdb_sysroot NULL checks
Since fed040c6a50399617d8265cbddc7fd21b3f134ef gdb_sysroot is
never NULL. This commit removes all gdb_sysroot NULL checks.
gdb/ChangeLog:
* exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
* infrun.c (follow_exec): Likewise.
* remote.c (remote_filesystem_is_local): Likewise.
* solib.c (solib_find_1): Likewise.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 233d0f8..792f847 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -1133,7 +1133,7 @@ follow_exec (ptid_t ptid, char *execd_pathname) breakpoint_init_inferior (inf_execd); - if (gdb_sysroot != NULL && *gdb_sysroot != '\0') + if (*gdb_sysroot != '\0') { char *name = exec_file_find (execd_pathname, NULL); |