summaryrefslogtreecommitdiffstats
path: root/fs/hfsplus/unicode.c
diff options
context:
space:
mode:
authorAndrew Morton2008-02-08 13:20:52 +0100
committerLinus Torvalds2008-02-08 18:22:36 +0100
commit8aa84ab99b1e47973f0b82258f0eab945d0b114d (patch)
treea8c5d2f582595a10bdf97e1f6dd1a537af9f3d22 /fs/hfsplus/unicode.c
parentudf: change maintainer (diff)
downloadkernel-qcow2-linux-8aa84ab99b1e47973f0b82258f0eab945d0b114d.tar.gz
kernel-qcow2-linux-8aa84ab99b1e47973f0b82258f0eab945d0b114d.tar.xz
kernel-qcow2-linux-8aa84ab99b1e47973f0b82258f0eab945d0b114d.zip
fs/hfsplus/unicode.c: fix uninitialized var warning
fs/hfsplus/unicode.c: In function 'hfsplus_hash_dentry': fs/hfsplus/unicode.c:328: warning: 'dsize' may be used uninitialized in this function Cc: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hfsplus/unicode.c')
-rw-r--r--fs/hfsplus/unicode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/hfsplus/unicode.c b/fs/hfsplus/unicode.c
index 9e10f9444b64..628ccf6fa402 100644
--- a/fs/hfsplus/unicode.c
+++ b/fs/hfsplus/unicode.c
@@ -325,7 +325,7 @@ int hfsplus_hash_dentry(struct dentry *dentry, struct qstr *str)
struct super_block *sb = dentry->d_sb;
const char *astr;
const u16 *dstr;
- int casefold, decompose, size, dsize, len;
+ int casefold, decompose, size, len;
unsigned long hash;
wchar_t c;
u16 c2;
@@ -336,6 +336,7 @@ int hfsplus_hash_dentry(struct dentry *dentry, struct qstr *str)
astr = str->name;
len = str->len;
while (len > 0) {
+ int uninitialized_var(dsize);
size = asc2unichar(sb, astr, len, &c);
astr += size;
len -= size;