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

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.
39 lines
876 B
C
39 lines
876 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <uv.h>
|
|
|
|
#include "plugin.h"
|
|
|
|
typedef void (*init_plugin_function)();
|
|
|
|
void mfp_register(const char *name) {
|
|
fprintf(stderr, "Registered plugin \"%s\"\n", name);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
if (argc == 1) {
|
|
fprintf(stderr, "Usage: %s [plugin1] [plugin2] ...\n", argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
uv_lib_t lib;
|
|
while (--argc) {
|
|
fprintf(stderr, "Loading %s\n", argv[argc]);
|
|
if (uv_dlopen(argv[argc], &lib)) {
|
|
fprintf(stderr, "Error: %s\n", uv_dlerror(&lib));
|
|
continue;
|
|
}
|
|
|
|
init_plugin_function init_plugin;
|
|
if (uv_dlsym(&lib, "initialize", (void **) &init_plugin)) {
|
|
fprintf(stderr, "dlsym error: %s\n", uv_dlerror(&lib));
|
|
continue;
|
|
}
|
|
|
|
init_plugin();
|
|
}
|
|
return 0;
|
|
}
|