• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修訂7f67d4c98a7efc189145ba077f968ef626c9c748 (tree)
時間2004-10-18 16:26:30
作者Alan Modra <amodra@gmai...>
CommiterAlan Modra

Log Message

* budemang.c (demangle): Fix thinko.

Change Summary

差異

--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,5 +1,7 @@
11 2004-10-18 Alan Modra <amodra@bigpond.net.au>
22
3+ * budemang.c (demangle): Fix thinko.
4+
35 * budemang.c (demangle): Handle "@plt" suffix.
46
57 2004-10-14 Nick Clifton <nickc@redhat.com>
--- a/binutils/budemang.c
+++ b/binutils/budemang.c
@@ -52,7 +52,7 @@ demangle (bfd *abfd, const char *name)
5252 pre = name;
5353 while (*name == '.')
5454 ++name;
55- pre_len = pre - name;
55+ pre_len = name - pre;
5656
5757 alloc = NULL;
5858 suf = strchr (name, '@');