2013-04-19 16:35 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)

* contrib/hbct/token1.c
  * contrib/hbpgsql/rddcopy.c
    * removed unused assignment
This commit is contained in:
Mindaugas Kavaliauskas
2013-04-19 16:36:20 +03:00
parent 877ddb4a06
commit 9da92928eb
3 changed files with 8 additions and 3 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-04-19 16:35 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* contrib/hbct/token1.c
* contrib/hbpgsql/rddcopy.c
* removed unused assignment
2013-04-18 14:58 UTC+0200 Przemysław Czerpak (druzus/at/poczta.onet.pl)
* .gitignore
! removed executable file permission

View File

@@ -116,7 +116,7 @@ static void do_token1( int iSwitch )
HB_SIZE sStrLen = hb_parclen( 1 );
const char * pcSeparatorStr;
HB_SIZE sSeparatorStrLen;
HB_SIZE nTokenCounter = 0;
HB_SIZE nTokenCounter;
HB_SIZE nSkip;
const char * pcSubStr;
char * pcRet = NULL;

View File

@@ -264,8 +264,8 @@ HB_FUNC( HB_PQCOPYFROMWA )
pgCopyContext * context;
char * szInit;
char * szFields = NULL;
char * szTmp = NULL;
PGresult * pgResult = NULL;
char * szTmp;
PGresult * pgResult;
HB_BOOL bFail = HB_FALSE;
pItem = hb_itemNew( NULL );