s3: Explicitly handle inbuf in cli_getattrE_done
authorVolker Lendecke <vl@samba.org>
Sat, 20 Feb 2010 14:20:38 +0000 (15:20 +0100)
committerVolker Lendecke <vl@samba.org>
Mon, 22 Feb 2010 22:23:20 +0000 (23:23 +0100)
source3/libsmb/clifile.c

index 6e65a826e31e2254b0c3b2ca674eedf00e177522..291f76dd91af3822d9d20d29ccab9cc96acd84eb 100644 (file)
@@ -3267,9 +3267,12 @@ static void cli_getattrE_done(struct tevent_req *subreq)
                req, struct cli_getattrE_state);
        uint8_t wct;
        uint16_t *vwv = NULL;
+       uint8_t *inbuf;
        NTSTATUS status;
 
-       status = cli_smb_recv(subreq, NULL, NULL, 11, &wct, &vwv, NULL, NULL);
+       status = cli_smb_recv(subreq, state, &inbuf, 11, &wct, &vwv,
+                             NULL, NULL);
+       TALLOC_FREE(subreq);
        if (!NT_STATUS_IS_OK(status)) {
                tevent_req_nterror(req, status);
                return;
@@ -3281,7 +3284,6 @@ static void cli_getattrE_done(struct tevent_req *subreq)
        state->access_time = make_unix_date2(vwv+2, state->zone_offset);
        state->write_time = make_unix_date2(vwv+4, state->zone_offset);
 
-       TALLOC_FREE(subreq);
        tevent_req_done(req);
 }