1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

Free pointer lib before function returns.

In function main, the pointer lib allocated at line 7 is passed as an argument to functions uv_dlopen at line 10, uv_dlerror at lines 11 and 17, and uv_dlsym at line 16, but it is never freed before the function returns at line 24. This results in a memory leak bug.
This commit is contained in:
mugitya03 2025-02-26 19:34:44 -05:00 committed by GitHub
parent feddddb56b
commit a0f2339011
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,6 +34,6 @@ int main(int argc, char **argv) {
init_plugin();
}
free(lib);
return 0;
}