From 620656a3ff90804807b74c208ca69a4a254b4f07 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 3 Mar 2003 07:11:42 +0000 Subject: 2003-03-02 Roland McGrath * scripts/abilist.awk: Reject data items with apparent 0 size. --- scripts/abilist.awk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 6e413f524b..c25cbc0934 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); -- cgit 1.4.1