瀏覽代碼

Fixed empty lines in readline()

master
Bert 13 年之前
父節點
當前提交
e8ed491ba9
共有 3 個檔案被更改,包括 5 行新增5 行删除
  1. +1
    -1
      Makefile
  2. +1
    -1
      main.c
  3. +3
    -3
      util.c

+ 1
- 1
Makefile 查看文件

@@ -1,6 +1,6 @@
all: sxiv

VERSION=git-20110214
VERSION=git-20110215

CC?=gcc
PREFIX?=/usr/local


+ 1
- 1
main.c 查看文件

@@ -91,7 +91,7 @@ int main(int argc, char **argv) {

if (options->from_stdin) {
while ((filename = readline(stdin))) {
if (!check_append(filename))
if (!*filename || !check_append(filename))
free((void*) filename);
}
} else {


+ 3
- 3
util.c 查看文件

@@ -102,11 +102,11 @@ char* readline(FILE *stream) {
}
} while (!end && !feof(stream) && !ferror(stream));

if (!ferror(stream) && *buf) {
if (ferror(stream)) {
s = NULL;
} else {
s = (char*) s_malloc((strlen(buf) + 1) * sizeof(char));
strcpy(s, buf);
} else {
s = NULL;
}

free(buf);


Loading…
取消
儲存