Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] p-typeprint.c, move pointer use to after null-check.
@ 2011-03-01 20:37 Michael Snyder
  2011-03-07 20:19 ` Michael Snyder
  2011-03-08  6:54 ` Joel Brobecker
  0 siblings, 2 replies; 5+ messages in thread
From: Michael Snyder @ 2011-03-01 20:37 UTC (permalink / raw)
  To: gdb-patches, Pierre Muller

[-- Attachment #1: Type: text/plain, Size: 41 bytes --]

If it's worth checking for null...

OK?


[-- Attachment #2: reversenull2.txt --]
[-- Type: text/plain, Size: 1180 bytes --]

2011-03-01  Michael Snyder  <msnyder@vmware.com>

	* p-typeprint.c (pascal_type_print_method_args): Don't use 
	pointer until after null-check.

Index: p-typeprint.c
===================================================================
RCS file: /cvs/src/src/gdb/p-typeprint.c,v
retrieving revision 1.38
diff -u -p -u -p -r1.38 p-typeprint.c
--- p-typeprint.c	10 Jan 2011 20:38:50 -0000	1.38
+++ p-typeprint.c	1 Mar 2011 20:34:08 -0000
@@ -156,18 +156,18 @@ void
 pascal_type_print_method_args (char *physname, char *methodname,
 			       struct ui_file *stream)
 {
-  int is_constructor = (strncmp (physname, "__ct__", 6) == 0);
-  int is_destructor = (strncmp (physname, "__dt__", 6) == 0);
-
-  if (is_constructor || is_destructor)
-    {
-      physname += 6;
-    }
-
   fputs_filtered (methodname, stream);
 
   if (physname && (*physname != 0))
     {
+      int is_constructor = (strncmp (physname, "__ct__", 6) == 0);
+      int is_destructor = (strncmp (physname, "__dt__", 6) == 0);
+
+      if (is_constructor || is_destructor)
+	{
+	  physname += 6;
+	}
+
       fputs_filtered (" (", stream);
       /* We must demangle this.  */
       while (isdigit (physname[0]))

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-03-08 14:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-01 20:37 [RFA] p-typeprint.c, move pointer use to after null-check Michael Snyder
2011-03-07 20:19 ` Michael Snyder
2011-03-08  6:54 ` Joel Brobecker
2011-03-08 14:56   ` Pierre Muller
2011-03-08 15:30     ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox