2008-12-24 04:56 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/contrib/rddado/adordd.prg
    * removed cSupperRDD never assigned local variable detected by new
      compiler logic added by Mindaugas.
This commit is contained in:
Przemyslaw Czerpak
2008-12-24 03:53:26 +00:00
parent e3b721a3ba
commit 6bd4ceb2c9
2 changed files with 7 additions and 3 deletions

View File

@@ -8,6 +8,11 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-12-24 04:56 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/rddado/adordd.prg
* removed cSupperRDD never assigned local variable detected by new
compiler logic added by Mindaugas.
2008-12-24 03:23 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* include/hberrors.h
* source/compiler/hbgenerr.c

View File

@@ -1391,7 +1391,6 @@ return SUCCESS
FUNCTION ADORDD_GETFUNCTABLE( pFuncCount, pFuncTable, pSuperTable, nRddID )
LOCAL cSuperRDD /* NO SUPER RDD */
LOCAL aADOFunc[ UR_METHODCOUNT ]
aADOFunc[ UR_INIT ] := ( @ADO_INIT() )
@@ -1446,8 +1445,8 @@ FUNCTION ADORDD_GETFUNCTABLE( pFuncCount, pFuncTable, pSuperTable, nRddID )
aADOFunc[ UR_EXISTS ] := ( @ADO_EXISTS() )
aADOFunc[ UR_DROP ] := ( @ADO_DROP() )
RETURN USRRDD_GETFUNCTABLE( pFuncCount, pFuncTable, pSuperTable, nRddID, cSuperRDD,;
aADOFunc )
RETURN USRRDD_GETFUNCTABLE( pFuncCount, pFuncTable, pSuperTable, nRddID, ;
/* NO SUPER RDD */, aADOFunc )
INIT PROCEDURE ADORDD_INIT()
rddRegister( "ADORDD", RDT_FULL )