Mercurial > emacs
diff lib-src/make-docfile.c @ 100104:6ab80abea3ee
(scan_lisp_file): Use xmalloc instead of malloc.
| author | Dan Nicolaescu <dann@ics.uci.edu> |
|---|---|
| date | Mon, 01 Dec 2008 20:29:02 +0000 |
| parents | d45acf0c8d23 |
| children | a9f7e446141d |
line wrap: on
line diff
--- a/lib-src/make-docfile.c Mon Dec 01 20:14:43 2008 +0000 +++ b/lib-src/make-docfile.c Mon Dec 01 20:29:02 2008 +0000 @@ -909,7 +909,7 @@ /* 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 ^_.
