From 64213705b26951834c7cdcc663fc8fcaae59f637 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Sun, 3 Feb 2008 19:59:07 +0000 Subject: [PATCH] And actually get the right bug number. b=415426 (which is what the previous checkin was for as well) git-svn-id: svn://10.0.0.236/trunk@244822 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/trace-malloc/lib/nsDebugHelpWin32.cpp | 2 +- mozilla/xpcom/base/nsStackWalk.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/tools/trace-malloc/lib/nsDebugHelpWin32.cpp b/mozilla/tools/trace-malloc/lib/nsDebugHelpWin32.cpp index 3acc96c13b6..10b3951218f 100644 --- a/mozilla/tools/trace-malloc/lib/nsDebugHelpWin32.cpp +++ b/mozilla/tools/trace-malloc/lib/nsDebugHelpWin32.cpp @@ -225,7 +225,7 @@ DHWImportHooker::PatchAllModules() // Need to cast to PENUMLOADED_MODULES_CALLBACK because the // constness of the first parameter of PENUMLOADED_MODULES_CALLBACK // varies over SDK versions (from non-const to const over time). - // See bug 391848 and bug 415252. + // See bug 391848 and bug 415426. return dhwEnumerateLoadedModules(::GetCurrentProcess(), (PENUMLOADED_MODULES_CALLBACK)ModuleEnumCallback, this); } diff --git a/mozilla/xpcom/base/nsStackWalk.cpp b/mozilla/xpcom/base/nsStackWalk.cpp index 7ef307c9e1a..a8bc5b9c855 100644 --- a/mozilla/xpcom/base/nsStackWalk.cpp +++ b/mozilla/xpcom/base/nsStackWalk.cpp @@ -815,7 +815,7 @@ BOOL SymGetModuleInfoEspecial(HANDLE aProcess, DWORD aAddr, PIMAGEHLP_MODULE aMo // constness of the first parameter of // PENUMLOADED_MODULES_CALLBACK varies over SDK versions (from // non-const to const over time). See bug 391848 and bug - // 415252. + // 415426. enumRes = _EnumerateLoadedModules(aProcess, (PENUMLOADED_MODULES_CALLBACK)callbackEspecial, (PVOID)&aAddr); if (FALSE != enumRes) { @@ -887,7 +887,7 @@ BOOL SymGetModuleInfoEspecial64(HANDLE aProcess, DWORD64 aAddr, PIMAGEHLP_MODULE // constness of the first parameter of // PENUMLOADED_MODULES_CALLBACK64 varies over SDK versions (from // non-const to const over time). See bug 391848 and bug - // 415252. + // 415426. enumRes = _EnumerateLoadedModules64(aProcess, (PENUMLOADED_MODULES_CALLBACK64)callbackEspecial64, (PVOID)&aAddr); if (FALSE != enumRes) {