CID 1214210: mod_ssml - resource leak when parsing SSML

This commit is contained in:
Chris Rienzo 2014-05-15 11:31:04 -04:00
parent d055f5b6df
commit b7b14209eb
1 changed files with 1 additions and 1 deletions

View File

@ -616,10 +616,10 @@ static int tag_hook(void *user_data, char *name, char **atts, int type)
{
int result = IKS_OK;
struct ssml_parser *parsed_data = (struct ssml_parser *)user_data;
struct ssml_node *new_node = malloc(sizeof *new_node);
struct ssml_node *parent_node = parsed_data->cur_node;
if (type == IKS_OPEN || type == IKS_SINGLE) {
struct ssml_node *new_node = malloc(sizeof *new_node);
if (parent_node) {
/* inherit parent attribs */
*new_node = *parent_node;