Skip to content

Commit

Permalink
tls: so that we can dissect the next layer
Browse files Browse the repository at this point in the history
  • Loading branch information
azzbcc authored and Kaian committed Sep 20, 2021
1 parent 322caa4 commit c3b4694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packet/packet_tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ packet_dissector_tls_dissect(PacketDissector *self, Packet *packet, GBytes *data
}

// This seems a SIP TLS packet ;-)
if (out != NULL && g_bytes_get_size(data) > 0) {
if (out != NULL && g_bytes_get_size(out) > 0) {
return packet_dissector_next(self, packet, out);
}
break;
Expand Down

0 comments on commit c3b4694

Please sign in to comment.