aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1996-10-11 22:31:56 +0000
committerFred Fish <fnf@specifix.com>1996-10-11 22:31:56 +0000
commit693e9bf6555521945a6953eb978a90347c3d7cc6 (patch)
treeaec33f95d04ec0652f3d6d8229692fa37704e7f0 /gdb
parent63dc694d2956f245e42e525cf9d4e6958d4d4554 (diff)
downloadgdb-693e9bf6555521945a6953eb978a90347c3d7cc6.zip
gdb-693e9bf6555521945a6953eb978a90347c3d7cc6.tar.gz
gdb-693e9bf6555521945a6953eb978a90347c3d7cc6.tar.bz2
* dbxread.c (process_one_symbol): Check for null string directly
rather than using strcmp against "". * partial-stab.h: Ditto.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/partial-stab.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7cec888..c0b1a5b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+Fri Oct 11 14:23:50 1996 Fred Fish <fnf@cygnus.com>
+
+ * dbxread.c (process_one_symbol): Check for null string directly
+ rather than using strcmp against "".
+ * partial-stab.h: Ditto.
+
Fri Oct 11 12:18:32 1996 Mark Alexander <marka@cygnus.com>
* gdbserver/{gdbreplay.c,low-linux.c,remote-utils.c,utils.c}:
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h
index c51f091..551ee71 100644
--- a/gdb/partial-stab.h
+++ b/gdb/partial-stab.h
@@ -382,7 +382,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifdef DBXREAD_ONLY
/* See if this is an end of function stab. */
- if (CUR_SYMBOL_TYPE == N_FUN && ! strcmp (namestring, ""))
+ if (CUR_SYMBOL_TYPE == N_FUN && *namestring == '\000')
{
unsigned long valu;