# | Line 257 | Line 257 | int resize; | |
---|---|---|
257 | #endif | |
258 | if (len > tempbuflen) { | |
259 | if (tempbuflen > 0) | |
260 | < | tempbuf = realloc(tempbuf, len); |
260 | > | tempbuf = realloc((void *)tempbuf, len); |
261 | else | |
262 | tempbuf = malloc(len); | |
263 | tempbuflen = tempbuf==NULL ? 0 : len; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |