MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / fixup_nt_string

Function fixup_nt_string

core_cmds.c:711–723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

709}
710
711static int fixup_nt_string(void** param)
712{
713 str *s = (str*)*param;
714 str s_nt;
715
716 if (pkg_nt_str_dup(&s_nt, s) < 0) {
717 LM_ERR("oom\n");
718 return E_OUT_OF_MEM;
719 }
720
721 *param = s_nt.s;
722 return 0;
723}
724
725static int fixup_nt_str(void** param)
726{

Callers

nothing calls this directly

Calls 1

pkg_nt_str_dupFunction · 0.70

Tested by

no test coverage detected