From bd9bfbf2e1d6699b66e506fc478269fa1431d99d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 8 Jun 2008 10:28:39 +0000 Subject: [PATCH] fix to prev --- harbour/contrib/hbmsql/msql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/contrib/hbmsql/msql.c b/harbour/contrib/hbmsql/msql.c index 8d3b438b36..45904e4bb5 100644 --- a/harbour/contrib/hbmsql/msql.c +++ b/harbour/contrib/hbmsql/msql.c @@ -100,7 +100,7 @@ HB_FUNC( MSQLFETCHR ) /* m_row msqlFetchRow(m_result *, int) */ int i; for( i = 0; i < num_fields; i++ ) - hb_itemArrayPut( aRow, i + 1, mrow[ i ] ); + hb_arraySetC( aRow, i + 1, mrow[ i ] ); hb_itemReturnRelease( aRow ); }