summaryrefslogtreecommitdiff
path: root/res/res_calendar_exchange.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2010-01-11 16:41:44 +0000
committerSean Bright <sean@malleable.com>2010-01-11 16:41:44 +0000
commitea47ab7ed9044793204419072f2eb32da366cf22 (patch)
tree90afc2b66dac5a6c03a8bf4b83d365701da24602 /res/res_calendar_exchange.c
parentba6201cae604be1fc5eb270784ffd21a7aa45d07 (diff)
Pass NULL for the ao2_callback function pointer instead of duplicating cb_true.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@239114 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_calendar_exchange.c')
-rw-r--r--res/res_calendar_exchange.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/res/res_calendar_exchange.c b/res/res_calendar_exchange.c
index 05a42633a..4722e6e88 100644
--- a/res/res_calendar_exchange.c
+++ b/res/res_calendar_exchange.c
@@ -212,11 +212,6 @@ static int parse_cdata(void *data, char *value, size_t len)
return IKS_OK;
}
-static int cb_true(void *user_data, void *arg, int flags)
-{
- return CMP_MATCH;
-}
-
static void exchangecal_destructor(void *obj)
{
struct exchangecal_pvt *pvt = obj;
@@ -227,7 +222,7 @@ static void exchangecal_destructor(void *obj)
}
ast_string_field_free_memory(pvt);
- ao2_callback(pvt->events, OBJ_UNLINK | OBJ_NODATA | OBJ_MULTIPLE, cb_true, NULL);
+ ao2_callback(pvt->events, OBJ_UNLINK | OBJ_NODATA | OBJ_MULTIPLE, NULL, NULL);
ao2_ref(pvt->events, -1);
}