]> code.delx.au - gnu-emacs/commitdiff
* lread.c (Fload): Use xfree, not free on saved_doc_string.
authorJim Meyering <jim@meyering.net>
Thu, 12 Jun 2008 22:54:12 +0000 (22:54 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 12 Jun 2008 22:54:12 +0000 (22:54 +0000)
Author: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>

src/ChangeLog
src/lread.c

index a936794edc7f2149099df68f9c86524ec862196b..10483787cc0e7266bdd6040ce04797a9a8dc5a50 100644 (file)
@@ -1,3 +1,7 @@
+2008-06-12  Emanuele Giaquinta <emanuele.giaquinta@gmail.com>  (tiny change)
+
+       * lread.c (Fload): Use xfree, not free on saved_doc_string.
+
 2008-06-12  Jim Meyering  <meyering@redhat.com>
 
        make unexec_free handle NULL the same way free does
index e5e77bc3477c154bcad7ab191e8d335424582645..3e0bd1ff671ac645f4e5c696cf28e997958015ba 100644 (file)
@@ -1269,7 +1269,7 @@ Return t if the file exists and loads successfully.  */)
 
   UNGCPRO;
 
-  free (saved_doc_string);
+  xfree (saved_doc_string);
   saved_doc_string = 0;
   saved_doc_string_size = 0;