]> Joshua Wise's Git repositories - netwatch.git/commitdiff
stupid reordering of frees
authorJacob Potter <jdpotter@andrew.cmu.edu>
Tue, 16 Dec 2008 15:54:38 +0000 (10:54 -0500)
committerJacob Potter <jdpotter@andrew.cmu.edu>
Tue, 16 Dec 2008 15:54:38 +0000 (10:54 -0500)
net/rfb.c

index ae26d0bac81d32c8408bca9a7f3ed0b070872670..8e5ab91b1732ae093e5ca9997944caa39d1b2f76 100644 (file)
--- a/net/rfb.c
+++ b/net/rfb.c
@@ -351,8 +351,8 @@ static void close_conn(struct tcp_pcb *pcb, struct rfb_state *state) {
        tcp_arg(pcb, NULL);
        tcp_sent(pcb, NULL);
        tcp_recv(pcb, NULL);
-       mem_free(state);
        mem_free(state->blockbuf);
+       mem_free(state);
        tcp_close(pcb);
        outputf("close_conn: done");
 }
This page took 0.023578 seconds and 4 git commands to generate.