From 5774dcfbd8132dabb5cf9f5b33c2e62fae8c01ce Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Tue, 17 May 2011 21:54:32 -0700 Subject: [PATCH] actually return datum with real content --- lib/roken/ndbm_wrap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/roken/ndbm_wrap.c b/lib/roken/ndbm_wrap.c index a15f4df90..73a3726d0 100644 --- a/lib/roken/ndbm_wrap.c +++ b/lib/roken/ndbm_wrap.c @@ -122,6 +122,7 @@ dbm_get (DB *db, int flags) DBT2DATUM(&value, &datum); #else db->seq(db, &key, &value, flags); + DBT2DATUM(&value, &datum); #endif return datum; } -- 2.11.4.GIT