Do full shutdown, instead of _exit(0) shutdown in the plugin process when we're doing leak checking.

This commit is contained in:
Benjamin Smedberg 2009-11-20 13:49:15 -05:00
Родитель 6acc2d4d3b
Коммит abbbc74bb1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -273,7 +273,7 @@ AsyncChannel::OnChannelError()
}
else {
// Child process, initiate quit sequence.
#ifdef DEBUG
#if defined(DEBUG) || defined(NS_BUILD_REFCNT_LOGGING)
// XXXbent this is totally out of place, but works for now.
XRE_ShutdownChildProcess(mWorkerLoop);