mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-08-07 21:53:41 +08:00
修复错误的释放动态库加载的句柄导致的 code 139错误
This commit is contained in:
@@ -103,7 +103,7 @@ end:
|
|||||||
|
|
||||||
void SDF_METHOD_free(SDF_METHOD *meth)
|
void SDF_METHOD_free(SDF_METHOD *meth)
|
||||||
{
|
{
|
||||||
if (meth) free(meth->dso);
|
if (meth) dlclose(meth->dso);
|
||||||
free(meth);
|
free(meth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user