Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
htsp: reshuffle some code to prevent unexpected async messages on shu…
…tdown
valgrind reported:
Invalid write of size 8
at 0x43000F: htsp_serve (htsp_server.c:2510)
by 0x4147D2: tcp_server_start (tcp.c:447)
by 0x412250: thread_wrapper (wrappers.c:125)
by 0x771CB4F: start_thread (pthread_create.c:304)
by 0x7E97E6C: clone (clone.S:112)
Address 0x11c30ca8 is 120 bytes inside a block of size 264 free'd
at 0x4C27D4E: free (vg_replace_malloc.c:427)
by 0x42FF27: htsp_serve (htsp_server.c:2488)
by 0x4147D2: tcp_server_start (tcp.c:447)
by 0x412250: thread_wrapper (wrappers.c:125)
by 0x771CB4F: start_thread (pthread_create.c:304)
by 0x7E97E6C: clone (clone.S:112)
The client was removed from the async list after all connections
were destroyed, but queues are part of the connection structure,
so sporadically, an async msg was queued after the queue flush.
This code change moves the async unlink before the connection
destroy call.- Loading branch information