From: Nick Clifton Date: Tue, 3 Jan 2017 15:26:27 +0000 (+0000) Subject: Fix compile time warning about using a possibly uninitialised variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09fe2662a708aa4da665bcaf942b5529e6809220;p=binutils-gdb.git Fix compile time warning about using a possibly uninitialised variable. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 420f1fc6d05..1e82218e9c1 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2017-01-03 Nick Clifton + + * mach-o.c (bfd_mach_o_lookup_uuid_command): Fix compile time + warning about using a possibly uninitialised variable. + 2017-01-02 Alan Modra * elf32-hppa.c (ensure_undef_weak_dynamic): New function. diff --git a/bfd/mach-o.c b/bfd/mach-o.c index 8bf1149de00..edfac158a9c 100644 --- a/bfd/mach-o.c +++ b/bfd/mach-o.c @@ -5641,9 +5641,9 @@ bfd_mach_o_core_file_failing_signal (bfd *abfd ATTRIBUTE_UNUSED) static bfd_mach_o_uuid_command * bfd_mach_o_lookup_uuid_command (bfd *abfd) { - bfd_mach_o_load_command *uuid_cmd; + bfd_mach_o_load_command *uuid_cmd = NULL; int ncmd = bfd_mach_o_lookup_command (abfd, BFD_MACH_O_LC_UUID, &uuid_cmd); - if (ncmd != 1) + if (ncmd != 1 || uuid_cmd == NULL) return FALSE; return &uuid_cmd->command.uuid; }