소스 검색

fix uninitialized variable warning

the returned UID is not used when trashing messages, but we still
shouldn't just return an undefined value.
Oswald Buddenhagen 10 년 전
부모
커밋
83eaac8787
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/drv_maildir.c

+ 1 - 0
src/drv_maildir.c

@@ -1365,6 +1365,7 @@ maildir_store_msg( store_t *gctx, msg_data_t *data, int to_trash,
 		}
 		box = gctx->path;
 	} else {
+		uid = 0;
 		box = ctx->trash;
 	}