diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/memory_watcher/scripts/memtrace.pl | 2 | ||||
-rw-r--r-- | tools/purify/purify_message.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/memory_watcher/scripts/memtrace.pl b/tools/memory_watcher/scripts/memtrace.pl index 64ad966..3c014d0 100644 --- a/tools/memory_watcher/scripts/memtrace.pl +++ b/tools/memory_watcher/scripts/memtrace.pl @@ -101,7 +101,7 @@ sub process_raw($) { if ($filename =~ m/microsoft visual studio 8/) { next; } - if ($filename =~ m/platformsdk_vista_6_0/) { + if ($filename =~ m/platformsdk_win2008_6_1/) { next; } if ($location_blame eq "") { diff --git a/tools/purify/purify_message.py b/tools/purify/purify_message.py index be1b58d..9ff107f 100644 --- a/tools/purify/purify_message.py +++ b/tools/purify/purify_message.py @@ -117,7 +117,7 @@ class Stack: # if functions match the following, elide them from the stack pat_func_elide = (re.compile('^std::'), re.compile('^new\(')) # if files match the following, elide them from the stack - pat_file_elide = (re.compile('.*platformsdk_vista.*'), + pat_file_elide = (re.compile('.*platformsdk_win2008.*'), re.compile('.*.(dll|DLL)$'), # bug 1069902 re.compile('webkit/pending/wtf/fastmalloc\.h'), |