Quellcode durchsuchen

Fixed segfault when run with -c

master
Bert Münnich vor 10 Jahren
Ursprung
Commit
25077ac764
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +1
    -1
      Makefile
  2. +1
    -1
      thumbs.c

+ 1
- 1
Makefile Datei anzeigen

@@ -1,4 +1,4 @@
VERSION = git-20141025
VERSION = git-20141029

PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man


+ 1
- 1
thumbs.c Datei anzeigen

@@ -161,7 +161,7 @@ void tns_init(tns_t *tns, const fileinfo_t *files, const int *cnt, int *sel,
if (tns == NULL)
return;

if (*cnt > 0) {
if (cnt != NULL && *cnt > 0) {
tns->thumbs = (thumb_t*) s_malloc(*cnt * sizeof(thumb_t));
memset(tns->thumbs, 0, *cnt * sizeof(thumb_t));
} else {


Laden…
Abbrechen
Speichern