2008-11-02 07:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/version.c
! Added missing header from previous change.
* source/vm/itemapi.c
! snprintf() -> hb_snprintf()
This got incidentally reverted in previous commit by mistake.
This commit is contained in:
@@ -8,6 +8,14 @@
|
||||
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
|
||||
*/
|
||||
|
||||
2008-11-02 07:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
|
||||
* source/rtl/version.c
|
||||
! Added missing header from previous change.
|
||||
|
||||
* source/vm/itemapi.c
|
||||
! snprintf() -> hb_snprintf()
|
||||
This got incidentally reverted in previous commit by mistake.
|
||||
|
||||
2008-11-02 07:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
|
||||
* include/hbstdgen.ch
|
||||
- Removed HB_VERSION mistakenly left there.
|
||||
|
||||
@@ -62,6 +62,7 @@
|
||||
*/
|
||||
|
||||
#include "hbapi.h"
|
||||
#include "hbvm.h"
|
||||
|
||||
#include "hbver.ch"
|
||||
|
||||
|
||||
@@ -2495,7 +2495,7 @@ HB_EXPORT char * hb_itemString( PHB_ITEM pItem, ULONG * ulLen, BOOL * bFreeReq )
|
||||
buffer = ( char * ) hb_xgrab( size );
|
||||
do
|
||||
{
|
||||
n = snprintf( buffer, size, "%p", hb_itemGetPtr( pItem ) );
|
||||
n = hb_snprintf( buffer, size, "%p", hb_itemGetPtr( pItem ) );
|
||||
if( (n > -1) && (n < size) )
|
||||
{
|
||||
bFail = FALSE;
|
||||
|
||||
Reference in New Issue
Block a user