mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-20 17:00:36 +00:00
The Git repository of the Libabigail Project
0425b0f566
When a member function is wrongly considered as being added, then either the new member function doesn't have a symbol name (linkage name) or it has one, and it was already present in the first version of the binary. What was I thinking ... so I hope this shot is better. * src/abg-comparison.cc (class_diff::ensure_lookup_tables_populated): Ensure that when a member function is wrongly considered as being added, then either the new member function doesn't have a symbol name (linkage name) or it has one, and it was already present in the first version of the binary. Signed-off-by: Dodji Seketeli <dodji@redhat.com> # Veuillez saisir le message de validation pour vos modifications. Les lignes # commençant par '#' seront ignorées, et un message vide abandonne la validation. # Sur la branche fix-master # Votre branche est à jour avec 'origin/master'. # # Modifications qui seront validées : # modified: src/abg-comparison.cc # # Modifications qui ne seront pas validées : # modified: tools/abidw.cc # # Fichiers non suivis: # abidw.abi # build/ # depcomp # missing # patch-edited.txt # patch.txt # prtests/ # test-driver # # ------------------------ >8 ------------------------ # Ne touchez pas à la ligne ci-dessus # Tout se qui suit sera éliminé. diff --git a/src/abg-comparison.cc b/src/abg-comparison.cc index 14208f5..ef7c6c9 100644 --- a/src/abg-comparison.cc +++ b/src/abg-comparison.cc @@ -7419,8 +7419,8 @@ class_diff::ensure_lookup_tables_populated(void) const inserted_member_fns().begin(); i != inserted_member_fns().end(); ++i) - if (i->second->get_symbol() - && f->lookup_function_symbol(i->second->get_symbol()->get_name(), + if (!i->second->get_symbol() + || f->lookup_function_symbol(i->second->get_symbol()->get_name(), i->second->get_symbol()->get_version().str())) to_delete.push_back(i->first); |
||
---|---|---|
doc | ||
include | ||
m4 | ||
scripts | ||
src | ||
tests | ||
tools | ||
.gitignore | ||
abigail.m4 | ||
AUTHORS | ||
ChangeLog | ||
COMMIT-LOG-GUIDELINES | ||
COMPILING | ||
config.h.in | ||
configure.ac | ||
CONTRIBUTING | ||
COPYING | ||
COPYING-GPLV3 | ||
COPYING-LGPLV2 | ||
COPYING-LGPLV3 | ||
gen-changelog.py | ||
install-sh | ||
libabigail.pc.in | ||
ltmain.sh | ||
Makefile.am | ||
README | ||
test21-type-suppr-0.suppr | ||
test21-type-suppr-report-0.txt |
This is the Application Binary Interface Generic Analysis and Instrumentation Library. It aims at constructing, manipulating, serializing and de-serializing ABI-relevant artifacts. The set of artifacts that we are intersted is made of quantities like types, variable, fonctions and declarations of a given library or program. For a given library or program this set of quantities is called an ABI corpus. This library aims at (among other things) providing a way to comparing two ABI Corpuses, provide detailed information about their differences, and help build tools to infer interesting conclusions about these differences. You are welcome to contribute to this project after reading the files CONTRIBUTING and COMMIT-LOG-GUIDELINES files in the source tree. Communicating with the maintainers of this project -- including sending patches to be include to the source code -- happens via email at libabigail@sourceware.org.