aboutsummaryrefslogtreecommitdiff
path: root/ext2fs
diff options
context:
space:
mode:
authorJustus Winter <justus@gnupg.org>2017-08-10 23:25:41 +0200
committerJustus Winter <justus@gnupg.org>2017-08-10 23:25:41 +0200
commitbb9dba5a97b5605d12aa68b2978bda329a9f1f31 (patch)
tree0759e5cc2e59c15a72b0a54fcdb785f97cfdbc03 /ext2fs
parent0a68ce9956efcc286d359907b0e5599eb5a404ec (diff)
downloadhurd-bb9dba5a97b5605d12aa68b2978bda329a9f1f31.tar.gz
hurd-bb9dba5a97b5605d12aa68b2978bda329a9f1f31.tar.bz2
hurd-bb9dba5a97b5605d12aa68b2978bda329a9f1f31.zip
ext2fs: Fix warning.
* ext2fs/xattr.c (ext2_set_xattr): Initialize 'block'.
Diffstat (limited to 'ext2fs')
-rw-r--r--ext2fs/xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/xattr.c b/ext2fs/xattr.c
index bfc34028..f6ea0f39 100644
--- a/ext2fs/xattr.c
+++ b/ext2fs/xattr.c
@@ -663,7 +663,7 @@ ext2_set_xattr (struct node *np, const char *name, const char *value,
size_t rest;
error_t err;
block_t blkno;
- void *block;
+ void *block = NULL;
struct ext2_inode *ei;
struct ext2_xattr_header *header;
struct ext2_xattr_entry *entry;