diff options
author | Justus Winter <justus@gnupg.org> | 2017-08-10 23:25:41 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-08-10 23:25:41 +0200 |
commit | bb9dba5a97b5605d12aa68b2978bda329a9f1f31 (patch) | |
tree | 0759e5cc2e59c15a72b0a54fcdb785f97cfdbc03 /ext2fs | |
parent | 0a68ce9956efcc286d359907b0e5599eb5a404ec (diff) | |
download | hurd-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.c | 2 |
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; |