* pinfo.cc (winpids::release): Fix typo.
This commit is contained in:
parent
f3ea02b1cf
commit
67cd42db4c
|
@ -1,3 +1,7 @@
|
||||||
|
2005-12-22 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* pinfo.cc (winpids::release): Fix typo.
|
||||||
|
|
||||||
2005-12-21 Christopher Faylor <cgf@timesys.com>
|
2005-12-21 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* pinfo.cc (pinfo::init): Clarify comment slightly.
|
* pinfo.cc (pinfo::init): Clarify comment slightly.
|
||||||
|
|
|
@ -1313,11 +1313,11 @@ winpids::release ()
|
||||||
for (unsigned i = 0; i < npids; i++)
|
for (unsigned i = 0; i < npids; i++)
|
||||||
if (pinfolist[i] == (_pinfo *) myself)
|
if (pinfolist[i] == (_pinfo *) myself)
|
||||||
continue;
|
continue;
|
||||||
else if (pinfolist[i].hProc)
|
else if (pinfolist[i].hProcess)
|
||||||
{
|
{
|
||||||
if (pinfolist[i])
|
if (pinfolist[i])
|
||||||
pinfolist[i].release ();
|
pinfolist[i].release ();
|
||||||
CloseHandle (pinfolist[i].hProc);
|
CloseHandle (pinfolist[i].hProcess);
|
||||||
}
|
}
|
||||||
else if ((p = pinfolist[i]))
|
else if ((p = pinfolist[i]))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue