projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bfe166
)
Fix a bug in TLSProxy where zero length messages were not being recorded
author
Matt Caswell
<matt@openssl.org>
Tue, 22 Nov 2016 16:16:23 +0000
(16:16 +0000)
committer
Matt Caswell
<matt@openssl.org>
Thu, 8 Dec 2016 17:19:38 +0000
(17:19 +0000)
Perl changes reviewed by Richard Levitte. Non-perl changes reviewed by Rich
Salz
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
util/TLSProxy/Message.pm
patch
|
blob
|
history
diff --git
a/util/TLSProxy/Message.pm
b/util/TLSProxy/Message.pm
index 8e743c56d3ce9d11faa38b1056d538343d43ef34..e5c42c83c450bfd726a2796a81880e625e0e24b5 100644
(file)
--- a/
util/TLSProxy/Message.pm
+++ b/
util/TLSProxy/Message.pm
@@
-187,7
+187,7
@@
sub get_messages
$recoffset += 4;
$payload = "";
- if ($recoffset < $record->decrypt_len) {
+ if ($recoffset <
=
$record->decrypt_len) {
#Some payload data is present in this record
if ($record->decrypt_len - $recoffset >= $messlen) {
#We can complete the message with this record