trace_tcp: trace_packet_write_fd: Do not use unitialized variables from stack
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.
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.