From: Roland McGrath Date: Mon, 3 Mar 2003 07:11:42 +0000 (+0000) Subject: 2003-03-02 Roland McGrath X-Git-Tag: cvs/glibc-2_3_3~1393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=620656a3ff90804807b74c208ca69a4a254b4f07;p=thirdparty%2Fglibc.git 2003-03-02 Roland McGrath * scripts/abilist.awk: Reject data items with apparent 0 size. --- diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 6e413f524b3..c25cbc09349 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -44,6 +44,10 @@ $2 == "g" || $2 == "w" && NF == 7 { print symbol, version, weak, "?", type, $4, $5; next; } + if (size == " 0x") { + print symbol, version, weak, "?", type, $4, $5; + next; + } # Disabled -- weakness should not matter to shared library ABIs any more. #if (weak == "w") type = tolower(type);