diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/listing.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 99a6350..97c08e5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2009-07-15 Kai Tietz <kai.tietz@onevision.com> + + * listing.c (print_source): Initialize cache by NULL. + 2009-07-15 Daniel Gutson <dgutson@codesourcery.com> * doc/c-arm.texi (mauto-it): Removed old option. diff --git a/gas/listing.c b/gas/listing.c index 3af70d7..aafc545 100644 --- a/gas/listing.c +++ b/gas/listing.c @@ -983,7 +983,7 @@ print_source (file_info_type * current_file, #define NUM_CACHE_LINES 3 static cached_line cached_lines[NUM_CACHE_LINES]; static int next_free_line = 0; - cached_line * cache; + cached_line * cache = NULL; if (current_file->linenum > list->hll_line && list->hll_line > 0) |