summaryrefslogtreecommitdiff
path: root/dln.c
diff options
context:
space:
mode:
Diffstat (limited to 'dln.c')
-rw-r--r--dln.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/dln.c b/dln.c
index e9d0bb1508..7521678623 100644
--- a/dln.c
+++ b/dln.c
@@ -1268,16 +1268,6 @@ dln_load(const char *file)
# define RTLD_GLOBAL 0
#endif
-#if defined __SYMBIAN32__
- { /* Need backslash in the path again */
- char *p;
- for (p = (char *)file; *p; p++) {
- if (*p == '/') {
- *p = '\\';
- }
- }
- }
-#endif
/* Load file */
if ((handle = (void*)dlopen(file, RTLD_LAZY|RTLD_GLOBAL)) == NULL) {
error = dln_strerror();
@@ -1286,8 +1276,9 @@ dln_load(const char *file)
init_fct = (void(*)())dlsym(handle, buf);
#if defined __SYMBIAN32__
- if (init_fct == NULL)
- init_fct = (void(*)())dlsym(handle, "1"); /* Some Symbian versions do not support symbol table in DLL, ordinal numbers only */
+ if (init_fct == NULL) {
+ init_fct = (void(*)())dlsym(handle, "1"); /* Some Symbian versions do not support symbol table in DLL, ordinal numbers only */
+ }
#endif
if (init_fct == NULL) {
error = DLN_ERROR();