diff options
author | Oliver Braun <obr@openoffice.org> | 2001-06-05 06:51:56 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2001-06-05 06:51:56 +0000 |
commit | 97bbe26145fc3b05040f81ee26aaf69ad09a5334 (patch) | |
tree | d2dc7240be639bdd955963363c71738155c1fb17 /sal | |
parent | fe1d8de3bc683c363a62beb0a72087b0c517012d (diff) |
#87132# osl_getFileURLFromSystemPath does not return a bool
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/security.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/w32/security.c b/sal/osl/w32/security.c index 83cd21a2c9a1..461ae3216009 100644 --- a/sal/osl/w32/security.c +++ b/sal/osl/w32/security.c @@ -2,9 +2,9 @@ * * $RCSfile: security.c,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hro $ $Date: 2001-05-23 10:08:36 $ + * last change: $Author: obr $ $Date: 2001-06-05 07:51:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -553,7 +553,7 @@ sal_Bool SAL_CALL osl_getConfigDir(oslSecurity Security, rtl_uString **pustrDire rtl_uString_newFromStr( &ustrFile, sFile); } - bSuccess = osl_getFileURLFromSystemPath( ustrFile, pustrDirectory ); + bSuccess = osl_File_E_None == osl_getFileURLFromSystemPath( ustrFile, pustrDirectory ); if ( ustrFile ) rtl_uString_release( ustrFile ); |