2024-10-25 14:09 UTC+0200 Aleksander Czajczynski (hb fki.pl)

* contrib/hbziparc/ziparc.prg
    ! return value of hb_zipDeleteFile() is not logical,
      fix by Grigory Filatov.
This commit is contained in:
Grigory Filatov
2024-10-25 14:10:22 +02:00
committed by Aleksander Czajczynski
parent a8693f92df
commit 40e7736289
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,11 @@
Entries may not always be in chronological/commit order. Entries may not always be in chronological/commit order.
See license at the end of file. */ See license at the end of file. */
2024-10-25 14:09 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* contrib/hbziparc/ziparc.prg
! return value of hb_zipDeleteFile() is not logical,
fix by Grigory Filatov.
2024-10-18 07:56 UTC+0200 Aleksander Czajczynski (hb fki.pl) 2024-10-18 07:56 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* src/common/hbver.c * src/common/hbver.c
* guard Win10 build number getter from the unknown, * guard Win10 build number getter from the unknown,

View File

@@ -496,7 +496,7 @@ FUNCTION hb_ZipDeleteFiles( cFileName, acFiles )
ENDIF ENDIF
FOR EACH cFileToProc IN acFiles FOR EACH cFileToProc IN acFiles
lRetVal := lRetVal .AND. hb_zipDeleteFile( cFileName, cFileToProc ) lRetVal := lRetVal .AND. ( hb_zipDeleteFile( cFileName, cFileToProc ) == UNZ_OK )
NEXT NEXT
RETURN lRetVal RETURN lRetVal