justified exit condition
This commit is contained in:
parent
922090060f
commit
58aceac802
3
macrod.c
3
macrod.c
@ -256,9 +256,10 @@ int pressBufferRemove (struct pressed_buffer *pb, unsigned short key)
|
|||||||
pb->buf[i] = pb->buf[pb->size];
|
pb->buf[i] = pb->buf[pb->size];
|
||||||
unsigned short *b;
|
unsigned short *b;
|
||||||
b = realloc(pb->buf, sizeof(unsigned short) * pb->size);
|
b = realloc(pb->buf, sizeof(unsigned short) * pb->size);
|
||||||
|
/* if realloc failed but the buffer is populated throw an error */
|
||||||
if (!b && pb->size) {
|
if (!b && pb->size) {
|
||||||
fprintf(stderr, "realloc failed in pressBufferRemove: %s",
|
fprintf(stderr, "realloc failed in pressBufferRemove: %s",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
exit(errno);
|
exit(errno);
|
||||||
}
|
}
|
||||||
pb->buf = b;
|
pb->buf = b;
|
||||||
|
Loading…
Reference in New Issue
Block a user