public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2/libdm/datastruct hash.c
@ 2009-11-03 0:45 agk
0 siblings, 0 replies; only message in thread
From: agk @ 2009-11-03 0:45 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk@sourceware.org 2009-11-03 00:45:35
Modified files:
libdm/datastruct: hash.c
Log message:
Fix hash lookup segfault when keys compared are different lengths.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/libdm/datastruct/hash.c.diff?cvsroot=lvm2&r1=1.9&r2=1.10
--- LVM2/libdm/datastruct/hash.c 2008/11/03 18:59:59 1.9
+++ LVM2/libdm/datastruct/hash.c 2009/11/03 00:45:35 1.10
@@ -143,9 +143,13 @@
unsigned h = _hash(key, len) & (t->num_slots - 1);
struct dm_hash_node **c;
- for (c = &t->slots[h]; *c; c = &((*c)->next))
+ for (c = &t->slots[h]; *c; c = &((*c)->next)) {
+ if ((*c)->keylen != len)
+ continue;
+
if (!memcmp(key, (*c)->key, len))
break;
+ }
return c;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-03 0:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-03 0:45 LVM2/libdm/datastruct hash.c agk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).