diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-03 07:11:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-03 07:11:42 +0000 |
commit | 620656a3ff90804807b74c208ca69a4a254b4f07 (patch) | |
tree | 05e1b7dca295f6843e3758171ed5ca0aa42aafa5 /scripts/abilist.awk | |
parent | 7d9952c196a67b72d616266df22af58297769df4 (diff) | |
download | glibc-620656a3ff90804807b74c208ca69a4a254b4f07.tar.gz glibc-620656a3ff90804807b74c208ca69a4a254b4f07.tar.xz glibc-620656a3ff90804807b74c208ca69a4a254b4f07.zip |
2003-03-02 Roland McGrath <roland@redhat.com>
* scripts/abilist.awk: Reject data items with apparent 0 size.
Diffstat (limited to 'scripts/abilist.awk')
-rw-r--r-- | scripts/abilist.awk | 4 |
1 files changed, 4 insertions, 0 deletions
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); |