From d014929c516c2960d04d7bdb0f25c631219f7448 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Tue, 1 Mar 2011 21:12:27 +0000 Subject: [PATCH] 2011-03-01 Michael Snyder * event-top.c (display_gdb_prompt): Remove superfluous null check. --- gdb/ChangeLog | 2 ++ gdb/event-top.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0b3490ba7aa..756a4c17812 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2011-03-01 Michael Snyder + * event-top.c (display_gdb_prompt): Remove superfluous null check. + * python/py-prettyprint.c (apply_val_pretty_printer): VAL may be null. diff --git a/gdb/event-top.c b/gdb/event-top.c index afb0c08b004..71accf63638 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -312,8 +312,8 @@ display_gdb_prompt (char *new_prompt) rl_callback_handler_install (new_prompt, input_handler); } /* new_prompt at this point can be the top of the stack or the one - passed in. */ - else if (new_prompt) + passed in. It can't be NULL. */ + else { /* Don't use a _filtered function here. It causes the assumed character position to be off, since the newline we read from -- 2.30.2