bugfix: segfault when calling an event which is not implemented by filter
This commit is contained in:
parent
96616bb18c
commit
7237624b37
@ -181,11 +181,11 @@ BOOL pf_filters_register_new(filters_list* list, const char* module_path, const
|
||||
goto error;
|
||||
}
|
||||
|
||||
events = malloc(sizeof(proxyEvents));
|
||||
events = calloc(1, sizeof(proxyEvents));
|
||||
|
||||
if (events == NULL)
|
||||
{
|
||||
WLog_ERR(TAG, "pf_filters_register_new(): failed loading external module: %s", module_path);
|
||||
WLog_ERR(TAG, "pf_filters_register_new(): calloc proxyEvents failed");
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user