* strings.c (print_strings): Plug memory leak.
[deliverable/binutils-gdb.git] / binutils / strings.c
index 00cfb6dc66963c76d67b98bd9464b861ca0162b1..4763512fb7854b3ed6090ec2b47d6fb58fa34196 100644 (file)
@@ -1,6 +1,6 @@
 /* strings -- print the strings of printable characters in files
    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011
    Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -549,7 +549,10 @@ print_strings (const char *filename, FILE *stream, file_ptr address,
        {
          c = get_char (stream, &address, &magiccount, &magic);
          if (c == EOF)
-           return;
+           {
+             free (buf);
+             return;
+           }
          if (! STRING_ISGRAPHIC (c))
            /* Found a non-graphic.  Try again starting with next char.  */
            goto tryline;
@@ -638,6 +641,7 @@ print_strings (const char *filename, FILE *stream, file_ptr address,
 
       putchar ('\n');
     }
+  free (buf);
 }
 \f
 static void
This page took 0.023987 seconds and 4 git commands to generate.