persistentstorage/sql/SRC/Server/SqlSrvStatement.inl
changeset 51 7d4490026038
parent 40 b8bdbc8f59c7
--- a/persistentstorage/sql/SRC/Server/SqlSrvStatement.inl	Thu Aug 12 11:53:23 2010 +0100
+++ b/persistentstorage/sql/SRC/Server/SqlSrvStatement.inl	Mon Sep 27 11:59:56 2010 +0100
@@ -88,7 +88,12 @@
 	iBuf->ResizeL(aData.Length());
 	iBuf->Write(0, aData);
 	//If the size is 0, then return KNullDesC8, where an empty string is hold, not a null one ("" instead of NULL)
-	return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
+	// was return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
+	if (iBuf->Size() == 0)
+		{
+		return KNullDesC8();
+		}
+	return iBuf->Ptr(0);
 	}
 
 /**
@@ -102,7 +107,12 @@
 	{
 	__ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInvalidObj));
 	//If the size is 0, then return KNullDesC8, where an empty string is hold, not a null one ("" instead of NULL)
-	return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
+	// was return iBuf->Size() == 0 ? KNullDesC8() : iBuf->Ptr(0);
+	if (iBuf->Size() == 0)
+		{
+		return KNullDesC8();
+		}
+	return iBuf->Ptr(0);
 	}
 
 /**