Fixed uninitialized variable bug.

This commit is contained in:
Gunnar Beutner 2013-02-11 06:38:30 +01:00
parent a3f03928d7
commit 5fab16a223
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ void Process::Run(void)
void Process::WorkerThreadProc(int taskFd)
{
map<int, Process::Ptr> tasks;
pollfd *pfds;
pollfd *pfds = NULL;
for (;;) {
map<int, Process::Ptr>::iterator it, prev;