diff -r 7a31f7298d8f -r 0c91f0baec58 crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianSymbolLib/QueryAPI/SymbolQueryAPI.cs --- a/crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianSymbolLib/QueryAPI/SymbolQueryAPI.cs Tue Feb 23 17:05:24 2010 +0200 +++ b/crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianSymbolLib/QueryAPI/SymbolQueryAPI.cs Wed Apr 21 09:51:02 2010 +0300 @@ -65,6 +65,10 @@ public Symbol Lookup( uint aAddress, out SymbolCollection aCollection ) { aCollection = null; + if (aAddress < 0x400000) // Process run area is above this address + { + return null; + } // First check with the relocated/activated symbol collections, // i.e. RAM-loaded code that has been fixed up.