소스 검색

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


불러오는 중...
취소
저장