[Libreoffice-commits] .: soltools/ldump

Fridrich Strba fridrich at kemper.freedesktop.org
Fri Feb 11 08:05:43 PST 2011


 soltools/ldump/ldump.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 30ac12b9b031785ed38a3e4009893b7c0a1733e0
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date:   Fri Feb 11 17:05:22 2011 +0100

    some more hacks of exported symbols

diff --git a/soltools/ldump/ldump.cxx b/soltools/ldump/ldump.cxx
index 86ceec4..e0e80f1 100644
--- a/soltools/ldump/ldump.cxx
+++ b/soltools/ldump/ldump.cxx
@@ -176,7 +176,7 @@ bool LibDump::Dump()
             }
         }
 
-        if ((aBuf[0] =='?') || !strncmp(aBuf, "__CT",4))
+        if (aBuf[0] =='?')
         {
             nLen = (int) strlen(aBuf);
             memset( aName, 0, sizeof( aName ) );
@@ -194,6 +194,7 @@ bool LibDump::Dump()
         }
         else if ( bAll == true &&
                   strncmp(aBuf, "__real@", 7) != 0 &&
+                  strncmp(aBuf, "__CT",4) != 0 &&
                   strncmp(aBuf, "__TI3?", 6) != 0 )
         {
             int nPreLen = (int) strlen( cAPrefix );


More information about the Libreoffice-commits mailing list