r4052: fixed a bunch of code to use the type safe _p allocation macros
[tprouty/samba.git] / source4 / libcli / ldap / ldap_client.c
index 7a72734c570e4956a05e5236a279365e53cc952b..88c84d880ba3300b103a9fc2aae3346150efba63 100644 (file)
@@ -195,7 +195,7 @@ BOOL ldap_send_msg(struct ldap_connection *conn, struct ldap_message *msg,
            (msg->type == LDAP_TAG_UnbindRequest))
                return True;
 
-       entry = malloc(sizeof(*entry)); 
+       entry = malloc_p(struct ldap_queue_entry);
 
        if (entry == NULL)
                return False;
@@ -243,7 +243,7 @@ static struct ldap_message *recv_from_queue(struct ldap_connection *conn,
 static void add_search_entry(struct ldap_connection *conn,
                             struct ldap_message *msg)
 {
-       struct ldap_queue_entry *e = malloc(sizeof *e);
+       struct ldap_queue_entry *e = malloc_p(struct ldap_queue_entry);
 
        if (e == NULL)
                return;