aboutsummaryrefslogtreecommitdiff
path: root/gdb/exec.c
diff options
context:
space:
mode:
authorLuis Machado <lgustavo@codesourcery.com>2016-10-24 17:51:33 -0500
committerLuis Machado <lgustavo@codesourcery.com>2016-10-24 17:51:33 -0500
commitb5e1db87897cabfd9beb8b1bd49f7d965c0f2607 (patch)
tree503fc7560741f6be97831e11ee122d628a2259e1 /gdb/exec.c
parent010ece9c47f1ac08c9436b133a74472713dd709b (diff)
downloadgdb-b5e1db87897cabfd9beb8b1bd49f7d965c0f2607.zip
gdb-b5e1db87897cabfd9beb8b1bd49f7d965c0f2607.tar.gz
gdb-b5e1db87897cabfd9beb8b1bd49f7d965c0f2607.tar.bz2
Fix potential NULL pointer dereference
This patch addresses a potential NULL pointer dereference when we try to duplicate a string. The input pointer can be NULL and that may lead to crashes. We simply add a check for that case. gdb/ChangeLog: 2016-10-24 Luis Machado <lgustavo@codesourcery.com> * exec.c (exec_file_locate_attach): Prevent NULL pointer dereference when duplicating a string.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r--gdb/exec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/exec.c b/gdb/exec.c
index 67ecc63..6e2a296 100644
--- a/gdb/exec.c
+++ b/gdb/exec.c
@@ -227,7 +227,8 @@ exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty)
prev_err = err;
/* Save message so it doesn't get trashed by the catch below. */
- prev_err.message = xstrdup (err.message);
+ if (err.message != NULL)
+ prev_err.message = xstrdup (err.message);
}
END_CATCH