This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix uninitialized use of variables.


Carlos O'Donell <carlos at codesourcery.com> writes:
> Index: gdb/remote.c
> ===================================================================
> RCS file: /cvs/src/src/gdb/remote.c,v
> retrieving revision 1.271
> diff -u -p -r1.271 remote.c
> --- gdb/remote.c	8 Oct 2007 12:55:09 -0000	1.271
> +++ gdb/remote.c	18 Oct 2007 16:34:05 -0000
> @@ -1343,7 +1343,8 @@ unpack_varlen_hex (char *buff,	/* packet
>  static char *
>  unpack_nibble (char *buf, int *val)
>  {
> -  ishex (*buf++, val);
> +  if (!ishex (*buf++, val))
> +    error (_("Unpacked nibble does not contain hex characters."));
>    return buf;
>  }

This looks fine to me, although Daniel has thoughts on error handling
in the remote protocol that I don't fully understand.

But the error message is going to be obscure to users.  It should at
least say something about the remote protocol packet being misformed.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]