diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/port/win32/crashdump.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/backend/port/win32/crashdump.c b/src/backend/port/win32/crashdump.c index ba6fca75630..2f7c1b3ab66 100644 --- a/src/backend/port/win32/crashdump.c +++ b/src/backend/port/win32/crashdump.c @@ -132,11 +132,6 @@ crashDumpHandler(struct _EXCEPTION_POINTERS *pExceptionInfo) dumpType |= MiniDumpWithIndirectlyReferencedMemory | MiniDumpWithPrivateReadWriteMemory; } - if (GetProcAddress(hDll, "SymFromIndex") != NULL) - { - /* If this function exists, we have version 6.2 or newer */ - dumpType |= MiniDumpWithThreadInfo; - } systemTicks = GetTickCount(); snprintf(dumpPath, _MAX_PATH, |