shithub: lwext4

Download patch

ref: 9977df1f7776cfbe76a96a996c0adf4125ffe762
parent: 368a11f29f6da1a71fc9439a2ffc03a051fe5b60
author: gkostka <[email protected]>
date: Thu Oct 8 14:50:45 EDT 2015

Compile warnings fix

--- a/lwext4/ext4_xattr.c
+++ b/lwext4/ext4_xattr.c
@@ -549,7 +549,8 @@
 {
 	int ret = EOK;
 	bool block_modified = false;
-	void *ibody_data, *block_data;
+	void *ibody_data = 0;
+	void *block_data = 0;
 	struct ext4_xattr_item *item, *save_item;
 	size_t inode_size_rem, block_size_rem;
 	struct ext4_xattr_ibody_header *ibody_header = NULL;