* ldfile.c (ldfile_find_command_file): Initialize result.
authorKazu Hirata <kazu@codesourcery.com>
Mon, 6 Apr 2009 01:21:09 +0000 (01:21 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Mon, 6 Apr 2009 01:21:09 +0000 (01:21 +0000)
ld/ChangeLog
ld/ldfile.c

index e7df081..b968af6 100644 (file)
@@ -1,5 +1,9 @@
 2009-04-06  Kazu Hirata  <kazu@codesourcery.com>
 
+       * ldfile.c (ldfile_find_command_file): Initialize result.
+
+2009-04-06  Kazu Hirata  <kazu@codesourcery.com>
+
        * ld.texinfo (-L): Mention that -L options do not affect how ld
        searches for a linker script unless -T option is specified.
        * ldfile.c (ldfile_find_command_file): Append the path obtained
index 380b56a..422416a 100644 (file)
@@ -552,7 +552,7 @@ ldfile_find_command_file (const char *name, const char *extend,
                          bfd_boolean default_only)
 {
   search_dirs_type *search;
-  FILE *result;
+  FILE *result = NULL;
   char *buffer;
   static search_dirs_type *script_search;