소스 검색

don't leak box list from the command line

we also free the box list obtained from IMAP, so there isn't a real
reason not to do that for one from the command line.

amends 1de3ecd88.
Oswald Buddenhagen 5 년 전
부모
커밋
09d11245cd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main.c

+ 1 - 1
src/main.c

@@ -959,7 +959,7 @@ sync_chans( main_vars_t *mvars, int ent )
 			mvars->skip = 1;
 			return;
 		}
-		if (mvars->chanptr->boxlist == 2) {
+		if (mvars->chanptr->boxlist) {
 			for (nmbox = mvars->chanptr->boxes; (mbox = nmbox); ) {
 				nmbox = mbox->next;
 				free( mbox->name );