All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] erofs-utils: fix an uninitialized variable
@ 2019-05-23  4:57 Lianjun Huang
  2019-05-23  5:37 ` Gao Xiang
  2019-05-24  8:32 ` Chao Yu
  0 siblings, 2 replies; 3+ messages in thread
From: Lianjun Huang @ 2019-05-23  4:57 UTC (permalink / raw)


This fixes a building failure caused by using a variable before initialization.

Signed-off-by: Lianjun Huang <huanglianjun at vivo.com>
---
 mkfs/erofs_cache.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mkfs/erofs_cache.c b/mkfs/erofs_cache.c
index 5bb293b..0d7acf7 100644
--- a/mkfs/erofs_cache.c
+++ b/mkfs/erofs_cache.c
@@ -142,7 +142,7 @@ int erofs_flush_all_blocks(void)
 	char *erofs_blk_buf;
 	char *pbuf;
 	int count;
-	int ret;
+	int ret = 0;
 
 	erofs_blk_buf = malloc(EROFS_BLKSIZE);
 	if (!erofs_blk_buf)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-24  8:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-23  4:57 [PATCH] erofs-utils: fix an uninitialized variable Lianjun Huang
2019-05-23  5:37 ` Gao Xiang
2019-05-24  8:32 ` Chao Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.