diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6404e5426a..8cd199fb17 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,20 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-07-01 18:08 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * harbour-ce-spec + * harbour-w32-spec + * include/hbver.h + * harbour.spec + * RC1 -> RC2 + + * contrib/hbziparch/hbziparc.c + ! Fixed potential GPF in HBZIPCLEANUP(). + ! HBZIPCLEANUP() changed to be a HB_FUNC() (from HB_EXIT_FUNC()), + so now it has to be called manually, but at least it's + now doing something useful. (HB_EXIT_FUNC() in .c code + never gets executed by itself). + 2008-07-01 17:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbapollo/Makefile * contrib/hbcurl/Makefile diff --git a/harbour/contrib/hbziparch/hbziparc.c b/harbour/contrib/hbziparch/hbziparc.c index 4e92e905d3..69bf5cb63d 100644 --- a/harbour/contrib/hbziparch/hbziparc.c +++ b/harbour/contrib/hbziparch/hbziparc.c @@ -70,7 +70,7 @@ static PHB_ITEM s_UnzipFiles; static PHB_ITEM s_DelZip; static PHB_ITEM s_FileAttribs; -PHB_ITEM hbza_ChangeDiskBlock; +PHB_ITEM hbza_ChangeDiskBlock = NULL; PHB_ITEM hbza_pProgressInfo = NULL; PHB_ITEM hbza_ZipArray; HB_ZIP_INTERNAL hbza_pZipI; @@ -1662,7 +1662,7 @@ HB_FUNC(HB_UNZIPALLFILE) } } -HB_FUNC_EXIT( HBZIPCLEANUP ) +HB_FUNC( HBZIPCLEANUP ) { if( hbza_ChangeDiskBlock ) { diff --git a/harbour/harbour-ce-spec b/harbour/harbour-ce-spec index 6e150a357b..c94edc57ef 100644 --- a/harbour/harbour-ce-spec +++ b/harbour/harbour-ce-spec @@ -26,7 +26,7 @@ %define name harbour-ce %define version 1.0.0 -%define releasen RC1 +%define releasen RC2 %define hb_pref hbce %define hb_ccpath /opt/mingw32ce/bin %define hb_ccpref arm-wince-mingw32ce- diff --git a/harbour/harbour-w32-spec b/harbour/harbour-w32-spec index b94933405a..ac18261c7d 100644 --- a/harbour/harbour-w32-spec +++ b/harbour/harbour-w32-spec @@ -26,7 +26,7 @@ %define name harbour-w32 %define version 1.0.0 -%define releasen RC1 +%define releasen RC2 %define hb_pref hbw %define hb_ccpath /opt/xmingw/bin %define hb_ccpref i386-mingw32- diff --git a/harbour/harbour.spec b/harbour/harbour.spec index 8f72cd472b..d93fb010ed 100644 --- a/harbour/harbour.spec +++ b/harbour/harbour.spec @@ -61,7 +61,7 @@ %define name harbour %define dname Harbour %define version 1.0.0 -%define releasen RC1 +%define releasen RC2 %define hb_pref hb %define hb_arch export HB_ARCHITECTURE=linux %define hb_cc export HB_COMPILER=gcc diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index a935e57f41..a90f63e6a7 100644 --- a/harbour/include/hbver.h +++ b/harbour/include/hbver.h @@ -64,7 +64,7 @@ #define HB_VER_MAJOR 1 /* Major version number */ #define HB_VER_MINOR 0 /* Minor version number */ #define HB_VER_REVISION 0 /* Revision number */ -#define HB_VER_STATUS "RC1" /* Build status */ +#define HB_VER_STATUS "RC2" /* Build status */ #define __HARBOUR__ 0x010000 /* Two bytes: Major + Minor + Revision. This is recommented for 3rd party .c and .prg level code. */ #endif /* HB_VER_H_ */