public inbox for libabigail@sourceware.org
 help / color / mirror / Atom feed
From: "woodard at redhat dot com" <sourceware-bugzilla@sourceware.org>
To: libabigail@sourceware.org
Subject: [Bug default/29302] xeres-c doesn't self compare
Date: Thu, 07 Jul 2022 16:49:01 +0000	[thread overview]
Message-ID: <bug-29302-9487-RhAiEE0htx@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-29302-9487@http.sourceware.org/bugzilla/>

https://sourceware.org/bugzilla/show_bug.cgi?id=29302

--- Comment #3 from Ben Woodard <woodard at redhat dot com> ---
The prototype patch seems to fix the problem with xerces-c,  qt-virt-manager

diff --git a/src/abg-dwarf-reader.cc b/src/abg-dwarf-reader.cc
index 32a2cead..b71e94d7 100644
--- a/src/abg-dwarf-reader.cc
+++ b/src/abg-dwarf-reader.cc
@@ -14987,7 +14987,7 @@ build_function_decl(read_context&       ctxt,
          result->set_symbol(fn_sym);
          string linkage_name = result->get_linkage_name();
          if (linkage_name.empty()
-             || !fn_sym->get_alias_from_name(linkage_name))
+             /*|| !fn_sym->get_alias_from_name(linkage_name)*/)
            result->set_linkage_name(fn_sym->get_name());
          result->set_is_in_public_symbol_table(true);
        }


However it didn't seem to fix the problem with recoll which I would have
classified in the same problem. I'm really not sure if that means that recoll
has a different problem or if the solution is incomplete.

$ fedabipkgdiff --self-compare -a --from fc36 recoll
<snip>
======== comparing'librecoll-1.31.6.so' to itself wrongly yielded result:
===========
  Functions changes summary: 0 Removed, 2 Changed (46 filtered out), 0 Added
functions
  Variables changes summary: 0 Removed, 0 Changed, 0 Added variable

  2 functions with some indirect sub-type change:

    [C] 'method MimeHandlerExec::MimeHandlerExec(RclConfig*, const
std::string&)' at mh_exec.cpp:64:1 has some indirect sub-type changes:
      implicit parameter 0 of type 'MimeHandlerExec*' has sub-type changes:
        in pointed to type 'class MimeHandlerExec' at mh_exec.h:46:1:
          type size hasn't changed
          1 base class change:
            'class RecollFilter' at mimehandler.h:31:1 changed:
              type size hasn't changed
              10 member function insertions:
                'method virtual void RecollFilter::set_docsize(int64_t)' at
mimehandler.h:82:1, virtual at voffset 9/21
                'method virtual bool RecollFilter::set_document_data(const
std::string&, const char*, size_t)' at mimehandler.h:78:1, virtual at voffset
5/21
                'method virtual bool RecollFilter::set_document_file(const
std::string&, const std::string&)' at mimehandler.h:68:1, virtual at voffset
7/21
                'method virtual bool RecollFilter::set_document_string(const
std::string&, const std::string&)' at mimehandler.h:73:1, virtual at voffset
6/21
                'method virtual bool RecollFilter::set_document_uri(const
std::string&, const std::string&)' at mimehandler.h:63:1, virtual at voffset
8/21
                'method virtual bool
RecollFilter::set_property(Dijon::Filter::__anonymous_enum__1, const
std::string&)' at mimehandler.h:44:1, virtual at voffset 4/21
                'method virtual bool RecollFilter::skip_to_document(const
std::string&)' at mimehandler.h:95:1, virtual at voffset 12/21
                'method virtual RecollFilter::~RecollFilter(int)' at
mimehandler.h:36:1
                'method virtual RecollFilter::~RecollFilter(int)' at
mimehandler.h:36:1
                'method virtual RecollFilter::~RecollFilter(int)' at
mimehandler.h:36:1
              8 member function changes (7 filtered):
                'method virtual RecollFilter::~RecollFilter(int)' has some
sub-type changes:
                'method virtual void RecollFilter::setConfig(RclConfig*)' has
some sub-type changes:
                'method virtual bool
RecollFilter::set_property(Dijon::Filter::__anonymous_enum__1, const
std::string&)' has some sub-type changes:
                'method virtual bool RecollFilter::set_document_data(const
std::string&, const char*, size_t)' has some sub-type changes:
                'method virtual bool RecollFilter::set_document_string(const
std::string&, const std::string&)' has some sub-type changes:
                'method virtual void RecollFilter::set_docsize(int64_t)' has
some sub-type changes:
                'method virtual bool RecollFilter::skip_to_document(const
std::string&)' has some sub-type changes:
                'method virtual void RecollFilter::clear()' has some sub-type
changes:
          no member function changes (7 filtered);

    [C] 'method virtual bool MimeHandlerExecMultiple::next_document()' at
mh_execm.cpp:169:1 has some indirect sub-type changes:
      implicit parameter 0 of type 'MimeHandlerExecMultiple*' has sub-type
changes:
        in pointed to type 'class MimeHandlerExecMultiple' at mh_execm.h:98:1:
          type size hasn't changed
          1 base class change:
            'class MimeHandlerExec' at mh_exec.h:46:1 changed:
              details were reported earlier
          2 member function insertions:
            'method virtual
MimeHandlerExecMultiple::~MimeHandlerExecMultiple(int)' at mh_execm.h:109:1
            'method virtual
MimeHandlerExecMultiple::~MimeHandlerExecMultiple(int)' at mh_execm.h:109:1
          no member function changes (5 filtered);

===SELF CHECK FAILED for 'librecoll-1.31.6.so'
==== SELF CHECK SUCCEEDED for 'recoll' ====
==== SELF CHECK SUCCEEDED for 'recollindex' ====
==== SELF CHECK SUCCEEDED for 'recollq' ====

Let me know if you want to close this one and have me file another one or if
you want to address both issues in this one bug report

-- 
You are receiving this mail because:
You are on the CC list for the bug.

  parent reply	other threads:[~2022-07-07 16:49 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-29 21:02 [Bug default/29302] New: " woodard at redhat dot com
2022-06-29 21:03 ` [Bug default/29302] " woodard at redhat dot com
2022-07-06 15:20 ` woodard at redhat dot com
2022-07-06 15:24 ` woodard at redhat dot com
2022-07-07 16:49 ` woodard at redhat dot com [this message]
2022-07-12 16:00 ` dodji at redhat dot com
2022-07-14 14:19 ` dodji at redhat dot com
2022-07-18 11:22 ` dodji at redhat dot com
2022-07-18 14:00 ` dodji at redhat dot com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-29302-9487-RhAiEE0htx@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=libabigail@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).