2012-04-23 13:56 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* harbour/src/rtl/filesys.c
    ! fixed typo in last commit which disabled filename translations
      in hb_fsNameConv*() functions.
This commit is contained in:
Przemyslaw Czerpak
2012-04-23 11:57:05 +00:00
parent 232939c8fe
commit 1bd3fa10d7
2 changed files with 7 additions and 2 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-04-23 13:56 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/filesys.c
! fixed typo in last commit which disabled filename translations
in hb_fsNameConv*() functions.
2012-04-22 09:56 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idedocks.prg
* contrib/hbide/idedocwriter.prg

View File

@@ -3744,7 +3744,7 @@ const char * hb_fsNameConv( const char * szFileName, char ** pszFree )
if( pszFree )
*pszFree = NULL;
if( hb_vmIsReady() )
if( !hb_vmIsReady() )
return szFileName;
fTrim = hb_setGetTrimFileName();
@@ -3885,7 +3885,7 @@ HB_WCHAR * hb_fsNameConvU16( const char * szFileName )
TRIMFILENAME - strip trailing and leading spaces (also from extension)
*/
if( hb_vmIsReady() )
if( !hb_vmIsReady() )
return hb_mbtowc( szFileName ); /* No HVM stack */
cdp = hb_vmCDP();