Selaa lähdekoodia

realloc() behaves like free() if size is 0

master
sin 10 vuotta sitten
vanhempi
commit
8d018e620f
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      noice.c

+ 2
- 2
noice.c Näytä tiedosto

@@ -366,9 +366,9 @@ readln(void)
if (c == KEY_BACKSPACE) {
getyx(stdscr, y, x);
if (x >= x0) {
i--;
if (i > 0) {
ln = xrealloc(ln, (i - 1) * sizeof(*ln));
i--;
ln = xrealloc(ln, i * sizeof(*ln));
} else {
free(ln);
ln = NULL;


Loading…
Peruuta
Tallenna