ソースを参照

Fixed mem-leak in tns_init/tns_free

master
Bert Münnich 13年前
コミット
72071d5e9d
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      thumbs.c

+ 1
- 1
thumbs.c ファイルの表示

@@ -186,7 +186,7 @@ void tns_init(tns_t *tns, int cnt, win_t *win) {
void tns_free(tns_t *tns) {
int i;

if (tns != NULL)
if (tns == NULL)
return;

if (tns->thumbs != NULL) {


読み込み中…
キャンセル
保存