From 6bd4ceb2c993c3144f5095c98718ccf9e317e2c8 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Wed, 24 Dec 2008 03:53:26 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 5 +++++ harbour/contrib/rddado/adordd.prg | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c3bccd99d6..2f34dda748 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/rddado/adordd.prg b/harbour/contrib/rddado/adordd.prg index 5693f20f8e..6c25da8e15 100644 --- a/harbour/contrib/rddado/adordd.prg +++ b/harbour/contrib/rddado/adordd.prg @@ -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 )