From 00db34c1b9641bedf8d1e058f968e703dddafb6a Mon Sep 17 00:00:00 2001 From: Walter Negro Date: Sun, 14 Apr 2002 05:11:50 +0000 Subject: [PATCH] * contrib/libct/strswap.c * Add some values for default to eliminate warnings when compiling with gcc -O2. --- harbour/contrib/libct/strswap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/contrib/libct/strswap.c b/harbour/contrib/libct/strswap.c index d07b8d856c..bfa1f11f9b 100644 --- a/harbour/contrib/libct/strswap.c +++ b/harbour/contrib/libct/strswap.c @@ -96,7 +96,7 @@ HB_FUNC (STRSWAP) /* get parameters */ char *pcString1 = (char *)hb_parc (1); char *pcString2 = (char *)hb_parc (2); - char *pcRet1, *pcRet2; + char *pcRet1 = NULL, *pcRet2 = NULL; int iChange1, iChange2; size_t sIndex, sCmpLen;