Use P<> and not <> when checking pointers

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6651 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2015-12-02 21:07:21 +00:00
parent efc4cfccea
commit b81aac947b
2 changed files with 4 additions and 4 deletions

View file

@ -566,7 +566,7 @@ Header file for creating custom installer pages with nsDialogs
!macro __NSD_FreeImage IMAGE
${If} ${IMAGE} <> 0
${If} ${IMAGE} P<> 0
System::Call gdi32::DeleteObject(ps) ${IMAGE}
${EndIf}