summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-09 19:55:12 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-09 19:55:36 +0100
commit56d803ee5c060e761dbe5a6cc1c1443c932e2a31 (patch)
treec74a8d5f2fa201f56f599ace8cfa178f62bd695f
parentSince the prototypes are const, the method should also be const. (diff)
downloadcore-56d803ee5c060e761dbe5a6cc1c1443c932e2a31.tar.gz
core-56d803ee5c060e761dbe5a6cc1c1443c932e2a31.zip
Remove old modified message
-rw-r--r--tools/source/memtools/table.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/source/memtools/table.cxx b/tools/source/memtools/table.cxx
index 5c0b5ed4fe4d..5e38574464f3 100644
--- a/tools/source/memtools/table.cxx
+++ b/tools/source/memtools/table.cxx
@@ -123,7 +123,6 @@ BOOL Table::Insert( ULONG nKey, void* p )
{
USHORT n = 0;
USHORT nTempCount = (USHORT)nCount * 2;
- //<!--Modified by PengYunQuan for resolving a NULL pointer access
if( void** pNodes = Container::ImpGetOnlyNodes() )
{
@@ -153,7 +152,6 @@ BOOL Table::Insert( ULONG nKey, void* p )
if ( ImplGetIndex( nKey, &i ) != TABLE_ENTRY_NOTFOUND )
return FALSE;
}
- //-->Modified by PengYunQuan for resolving a NULL pointer access
}
else
{