Since there was only 1 bucket, and no hash function was specified, the code
actually worked perfectly fine. However, in theory, this was invalid use of
the OBJ_POINTER flag, so remove it so the code provides a better usage example.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200805
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
static int check_manager_session_inuse(const char *name)
{
- struct mansession_session *session = ao2_find(sessions, (char*) name, OBJ_POINTER);
+ struct mansession_session *session = ao2_find(sessions, (char *) name, 0);
int inuse = 0;
if (session) {