From c5aecc9eea6ead70c99d336a356e6e6571d0426d Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Sat, 3 Apr 2010 10:36:27 +0000 Subject: [PATCH] 2010-04-03 12:36 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rdd/wacore.c ! fixed GPF when unknown (never used in application code) alias is passed to hb_dbRequest() function - thanks to Shum for the info and code example --- harbour/ChangeLog | 6 ++++++ harbour/src/rdd/wacore.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4d11410233..a0715bfef6 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,12 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-03 12:36 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/rdd/wacore.c + ! fixed GPF when unknown (never used in application code) alias is + passed to hb_dbRequest() function - thanks to Shum for the info and + code example + 2010-04-02 09:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + config/ren_sfn.prg - external/bzip2/cnv_hb2o.bat diff --git a/harbour/src/rdd/wacore.c b/harbour/src/rdd/wacore.c index 62695933ba..ad9c612d73 100644 --- a/harbour/src/rdd/wacore.c +++ b/harbour/src/rdd/wacore.c @@ -595,7 +595,7 @@ AREAP hb_rddRequestArea( const char * szAlias, PHB_ITEM pCargo, if( szAlias ) { - pSymAlias = hb_dynsymFindName( szAlias ); + pSymAlias = hb_dynsymGet( szAlias ); /* verify if the alias name is valid symbol */ if( hb_rddVerifyAliasName( szAlias ) != HB_SUCCESS )