Windows: tests with building librecoll with mingw

This commit is contained in:
Jean-Francois Dockes 2015-10-03 10:21:24 +02:00
parent ce62afaede
commit 5f4dc25e49
3 changed files with 26 additions and 15 deletions

View file

@ -5,6 +5,7 @@
#include <string>
#include <iostream>
#include <sstream>
#include UNORDERED_MAP_INCLUDE
#include "debuglog.h"
#include "safesysstat.h"
@ -430,11 +431,11 @@ void ExecCmd::zapChild()
bool ExecCmd::requestChildExit()
{
if (m_piProcInfo.hProcess) {
if (m->m_piProcInfo.hProcess) {
LOGDEB(("ExecCmd: GenerateConsoleCtrlEvent -> %d\n",
m_piProcInfo.dwProcessId));
m->m_piProcInfo.dwProcessId));
return GenerateConsoleCtrlEvent(CTRL_BREAK_EVENT,
m_piProcInfo.dwProcessId);
m->m_piProcInfo.dwProcessId);
}
return false;
}