本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
Immanuel
/
sxiv
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Fixed segfault caused by image removal in thumbnail mode
master
Bert Münnich
10 年之前
父節點
2fbc21a205
當前提交
52e56c8924
共有
2 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+1
-1
main.c
+ 1
- 1
Makefile
查看文件
@@ -1,4 +1,4 @@
VERSION = git-201409
0
1
VERSION = git-201409
1
1
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
+ 1
- 1
main.c
查看文件
@@ -187,7 +187,7 @@ void remove_file(int n, bool manual)
filecnt--;
if (n < tns.cnt)
tns.cnt--;
if (mode == MODE_THUMB && fileidx >= tns.cnt)
if (mode == MODE_THUMB &&
tns.cnt > 0 &&
fileidx >= tns.cnt)
fileidx = tns.cnt - 1;
if (n < alternate)
alternate--;
Write
Preview
|
|
|
|
|
|
x
0
0
0:0
Loading…
取消
儲存