forked from Mirrors/freeswitch
Compare commits
1 Commits
master
...
switch_xml
Author | SHA1 | Date |
---|---|---|
Andrey Volk | 67a7ffeb51 |
|
@ -1633,7 +1633,7 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_parse_file_simple(const char *file)
|
|||
int fd = -1;
|
||||
struct stat st;
|
||||
switch_ssize_t l;
|
||||
void *m;
|
||||
void *m = NULL;
|
||||
switch_xml_root_t root;
|
||||
|
||||
if ((fd = open(file, O_RDONLY, 0)) > -1) {
|
||||
|
@ -1650,6 +1650,11 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_parse_file_simple(const char *file)
|
|||
|
||||
error:
|
||||
|
||||
switch_safe_free(m);
|
||||
if (fd > -1) {
|
||||
close(fd);
|
||||
}
|
||||
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Parsing File [%s]\n", file);
|
||||
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue