bugfix: segfault when calling an event which is not implemented by filter

This commit is contained in:
kubistika 2019-05-12 14:02:50 +03:00
parent 96616bb18c
commit 7237624b37

View File

@ -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;
}