From 42e39d474bd0e6fa48511da1e02e386f31fc02bf Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Wed, 8 Sep 1999 19:36:18 +0000 Subject: [PATCH] Remove extraneous debug dlerror() call which results in the subsequent dlerror() returning NULL. --- ext/standard/dl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/standard/dl.c b/ext/standard/dl.c index 6fef6ec045..3920cd4493 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -114,7 +114,6 @@ void php3_dl(pval *file,int type,pval *return_value) #if MSVC5 php_error(error_type,"Unable to load dynamic library '%s'
\n%s",libpath,php3_win_err()); #else - printf("dlerror = %s\n", dlerror()); php_error(error_type,"Unable to load dynamic library '%s' - %s",libpath,dlerror()); #endif RETURN_FALSE; -- 2.49.0