Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
sxiv
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Fixed empty lines in readline()
master
Bert
14 anni fa
parent
cfed65d36f
commit
e8ed491ba9
3 ha cambiato i file
con
5 aggiunte
e
5 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+1
-1
main.c
+3
-3
util.c
+ 1
- 1
Makefile
Vedi File
@@ -1,6 +1,6 @@
all: sxiv
VERSION=git-2011021
4
VERSION=git-2011021
5
CC?=gcc
PREFIX?=/usr/local
+ 1
- 1
main.c
Vedi File
@@ -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
Vedi File
@@ -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);
Write
Preview
Loading…
Annulla
Salva