summaryrefslogtreecommitdiff
path: root/sal/osl/w32
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-09-27 10:06:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2011-09-27 10:10:55 +0200
commit193715bbf0e59256fd8da7ebd8dc5eb937615281 (patch)
treee268a2f2623b7ebd1ac03e71d763d9ab84952167 /sal/osl/w32
parent04b8b4fbbb4b7f72f33d0b76b86945cb98c4ecd9 (diff)
FullTextEncodingDataSingleton must not call itself recursively.
Happened on non-standard locales (like hu_HU on Linux) when osl_loadModuleRelative wanted to access non-standard text encodings. For Windows, the fix is still only a "TODO: FIXME" dummy.
Diffstat (limited to 'sal/osl/w32')
-rw-r--r--sal/osl/w32/module.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sal/osl/w32/module.cxx b/sal/osl/w32/module.cxx
index b9841ad1e4bd..07f750e49724 100644
--- a/sal/osl/w32/module.cxx
+++ b/sal/osl/w32/module.cxx
@@ -138,6 +138,12 @@ oslModule SAL_CALL osl_loadModuleAscii(const sal_Char *pModuleName, sal_Int32 nR
return ret;
}
+oslModule osl_loadModuleRelativeAscii(
+ oslGenericFunction, char const * relativePath, sal_Int32 mode)
+{
+ return osl_loadModuleAscii(relativePath, mode); //TODO: FIXME
+}
+
/*****************************************************************************/
/* osl_getModuleHandle */
/*****************************************************************************/