projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00a2c52
)
*** empty log message ***
author
Jim Meyering
<jim@meyering.net>
Mon, 3 Nov 1997 05:19:56 +0000
(
05:19
+0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 3 Nov 1997 05:19:56 +0000
(
05:19
+0000)
lib/realloc.c
patch
|
blob
|
history
diff --git
a/lib/realloc.c
b/lib/realloc.c
index 1f82e75aa9baa3ce7c4330c8d98c39234fcec53c..2a39033a73f87ceedcb3d7476a36db06f19c9eee 100644
(file)
--- a/
lib/realloc.c
+++ b/
lib/realloc.c
@@
-28,13
+28,16
@@
char *malloc ();
char *realloc ();
/* Change the size of an allocated block of memory P to N bytes,
- with error checking. If P is NULL, use malloc. */
+ with error checking. If N is zero, change it to 1. If P is NULL,
+ use malloc. */
char *
rpl_realloc (p, n)
char *p;
size_t n;
{
+ if (n == 0)
+ n = 1;
if (p == 0)
return malloc (n);
return realloc (p, n);