From: Teodor Sigaev Date: Tue, 6 Dec 2005 18:22:13 +0000 (+0000) Subject: Fix stupid bug with sizeof X-Git-Tag: REL7_4_10~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9e4caa5abe8bde5612edb414c3418a691da8634f;p=thirdparty%2Fpostgresql.git Fix stupid bug with sizeof --- diff --git a/contrib/ltree/_ltree_gist.c b/contrib/ltree/_ltree_gist.c index 412fafa1ff8..d0643ac747a 100644 --- a/contrib/ltree/_ltree_gist.c +++ b/contrib/ltree/_ltree_gist.c @@ -82,7 +82,7 @@ _ltree_compress(PG_FUNCTION_ARGS) key->len = len; key->flag = 0; - MemSet(LTG_SIGN(key), 0, sizeof(ASIGLEN)); + MemSet(LTG_SIGN(key), 0, ASIGLEN); while (num > 0) { hashing(LTG_SIGN(key), item);