diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-07-16 00:37:28 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-07-16 00:37:28 +0000 |
commit | 3726e6c57f4e006f2744ab5b866ef98f2a79747d (patch) | |
tree | 1673c646d940b093299328b305321acdbb95a9ae /gas | |
parent | 74a4e4306a729941354abd7a44bf289b2521164a (diff) | |
download | gdb-3726e6c57f4e006f2744ab5b866ef98f2a79747d.zip gdb-3726e6c57f4e006f2744ab5b866ef98f2a79747d.tar.gz gdb-3726e6c57f4e006f2744ab5b866ef98f2a79747d.tar.bz2 |
2009-07-15 Kai Tietz <kai.tietz@onevision.com>
* listing.c (print_source): Initialize cache by NULL.
Diffstat (limited to 'gas')
-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) |