From 09fe2662a708aa4da665bcaf942b5529e6809220 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 3 Jan 2017 15:26:27 +0000 Subject: [PATCH] Fix compile time warning about using a possibly uninitialised variable. --- bfd/ChangeLog | 5 +++++ bfd/mach-o.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 420f1fc..1e82218 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 8bf1149..edfac15 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; } -- 2.7.4