瀏覽代碼

Fixed segfault when run with -c

master
Bert Münnich 10 年之前
父節點
當前提交
25077ac764
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      Makefile
  2. +1
    -1
      thumbs.c

+ 1
- 1
Makefile 查看文件

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

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


+ 1
- 1
thumbs.c 查看文件

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


Loading…
取消
儲存