Check the return value of realloc() for error
modified: src/nms.c
This commit is contained in:
parent
30bd00f949
commit
40da2058b4
@ -57,6 +57,10 @@ int main(int argc, char *argv[]) {
|
|||||||
if (inSize > inCapacity) {
|
if (inSize > inCapacity) {
|
||||||
inCapacity *= INPUT_GROWTH_FACTOR;
|
inCapacity *= INPUT_GROWTH_FACTOR;
|
||||||
input = realloc(input, inCapacity + 1);
|
input = realloc(input, inCapacity + 1);
|
||||||
|
if (input == NULL) {
|
||||||
|
fprintf (stderr, "Memory Allocation Error! Quitting...\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
input[inSize - 1] = c;
|
input[inSize - 1] = c;
|
||||||
input[inSize] = '\0';
|
input[inSize] = '\0';
|
||||||
|
Loading…
Reference in New Issue
Block a user