Fix for ld

This commit is contained in:
Tom Rix 2001-08-15 17:10:18 +00:00
parent bdcd319a1e
commit b90e1c6f3e
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-08-15 Tom Rix <trix@redhat.com>
* ldgram.y (saved_script_handle): Initialize to NULL.
* ldmain.c (main): Change check on saved_script_handle.
2001-08-14 Alan Modra <amodra@bigpond.net.au>
* emultempl/elf32.em: Formatting fixes.

View File

@ -50,7 +50,7 @@ static enum section_type sectype;
lang_memory_region_type *region;
boolean ldgram_want_filename = true;
FILE * saved_script_handle = false;
FILE * saved_script_handle = NULL;
boolean force_make_executable = false;
boolean ldgram_in_script = false;

View File

@ -298,7 +298,7 @@ main (argc, argv)
/* If we have not already opened and parsed a linker script
read the emulation's appropriate default script. */
if (saved_script_handle == false)
if (saved_script_handle == NULL)
{
int isfile;
char *s = ldemul_get_script (& isfile);