1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-11 16:08:13 +00:00

(scan_lisp_file): Use xmalloc instead of malloc.

This commit is contained in:
Dan Nicolaescu 2008-12-01 20:29:02 +00:00
parent c115043bf3
commit 938ebc4fcd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
* make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
2008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
* etags.c (add_regex): Pass correct length to re_compile_pattern.

View File

@ -909,7 +909,7 @@ scan_lisp_file (filename, mode)
/* Read in the contents. */
if (saved_string != 0)
free (saved_string);
saved_string = (char *) malloc (length);
saved_string = (char *) xmalloc (length);
for (i = 0; i < length; i++)
saved_string[i] = getc (infile);
/* The last character is a ^_.