mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4968 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -60,7 +60,7 @@ iks_new (const char *name)
|
||||
if (!s) return NULL;
|
||||
x = iks_new_within (name, s);
|
||||
if (!x) {
|
||||
iks_stack_delete (s);
|
||||
iks_stack_delete (&s);
|
||||
return NULL;
|
||||
}
|
||||
return x;
|
||||
@@ -202,7 +202,7 @@ iks_hide (iks *x)
|
||||
void
|
||||
iks_delete (iks *x)
|
||||
{
|
||||
if (x) iks_stack_delete (x->s);
|
||||
if (x) iks_stack_delete (&x->s);
|
||||
}
|
||||
|
||||
/***** Node Traversing *****/
|
||||
|
Reference in New Issue
Block a user