Skip to content

trace_tcp: trace_packet_write_fd: Do not use unitialized variables from stack

Michel Roelofs requested to merge fix-unitialized-data into jeroen

Inside the if statement arrays were allocated on the stack, to be sent later using write(). Then the variables were already removed from the stack.

Merge request reports