소스 검색

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

master
sin 10 년 전
부모
커밋
8d018e620f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      noice.c

+ 2
- 2
noice.c 파일 보기

@@ -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;


불러오는 중...
취소
저장