mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 10:31:37 -08:00
* lread.c (Fload): Use xfree, not free on saved_doc_string.
Author: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
This commit is contained in:
parent
9c5e177ecf
commit
97dead2d1f
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue