1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-19 17:57:22 +00:00

Was causing a very small leak on naptr lookups. Upon review just happened to be a typo missing a bang.

This commit is contained in:
William King 2013-05-18 17:50:50 -07:00
parent e583ead867
commit 63ebf3c9c2

@ -312,7 +312,7 @@ static void parse_naptr(const ldns_rr *naptr, const char *number, enum_record_t
char *regex, *replace;
if (zstr(str)) {
if (!zstr(str)) {
return;
}