]> git.sur5r.net Git - openldap/commitdiff
ldap_pvt_thread_pool_getkey() arg 'data' should point to a void* variable
authorHallvard Furuseth <hallvard@openldap.org>
Tue, 8 Jan 2008 16:23:05 +0000 (16:23 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Tue, 8 Jan 2008 16:23:05 +0000 (16:23 +0000)
contrib/slapd-modules/smbk5pwd/smbk5pwd.c

index 85a6260d5758e5bf3dad26d0bbe3a9900d26932e..545a00cc7200513f117741fc00fd07f0c16d758e 100644 (file)
@@ -268,7 +268,7 @@ static int k5key_chk(
        const struct berval *cred,
        const char **text )
 {
-       void *ctx;
+       void *ctx, *op_tmp;
        Operation *op;
        int rc;
        Entry *e;
@@ -281,9 +281,10 @@ static int k5key_chk(
        /* Find our thread context, find our Operation */
        ctx = ldap_pvt_thread_pool_context();
 
-       if ( ldap_pvt_thread_pool_getkey( ctx, smbk5pwd_op_cleanup, (void **)&op, NULL ) ||
-               !op )
+       if ( ldap_pvt_thread_pool_getkey( ctx, smbk5pwd_op_cleanup, &op_tmp, NULL )
+                || !op_tmp )
                return LUTIL_PASSWD_ERR;
+       op = op_tmp;
 
        rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
        if ( rc != LDAP_SUCCESS ) return LUTIL_PASSWD_ERR;