mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtwm: Coverity 88375
This commit is contained in:
parent
ac6fd23add
commit
3fe9d94879
1 changed files with 1 additions and 1 deletions
|
@ -640,7 +640,7 @@ static void WmDtCloseHelpCB (
|
|||
pTemp = pSD->cachedHelp;
|
||||
|
||||
/* Search our Cache List for the closed help dialog */
|
||||
while ((pTemp->helpDialog != helpDialog) && (pTemp != NULL))
|
||||
while (pTemp && (pTemp->helpDialog != helpDialog))
|
||||
{
|
||||
pTemp = pTemp->pNext;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue