aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorGary Benson <gbenson@redhat.com>2015-06-24 16:06:49 +0100
committerGary Benson <gbenson@redhat.com>2015-06-25 09:31:07 +0100
commita3be80c3c54e9e2c0d8e9a1ff77c931cd8ebeb60 (patch)
tree21d6dbc895dd38aebad7bcfdd748dc0284817e15 /gdb/remote.c
parent53f7371c77f50aea587cf06bf4cc79273ee1382e (diff)
downloadgdb-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/remote.c')
-rw-r--r--gdb/remote.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index f15d75e..68dd99d 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -10538,8 +10538,7 @@ remote_filesystem_is_local (struct target_ops *self)
this case we treat the remote filesystem as local if the
sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
does not support vFile:open. */
- if (gdb_sysroot != NULL
- && strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
+ if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
{
enum packet_support ps = packet_support (PACKET_vFile_open);