Commit 4659b53e authored by Janpopan's avatar Janpopan Committed by Matt Caswell
Browse files

Fix a wrong parameter count ERR_add_error_data

parent dc22495d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -464,7 +464,7 @@ static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
		return len;
		}

	ERR_add_error_data(4, "dlfcn_pathbyaddr(): ", dlerror());
	ERR_add_error_data(2, "dlfcn_pathbyaddr(): ", dlerror());
#endif
	return -1;
	}