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:
34f7245
)
Use for loop in WPACKET_fill_lengths instead of do...while
author
Matt Caswell
<matt@openssl.org>
Fri, 27 Jan 2017 12:05:52 +0000
(12:05 +0000)
committer
Matt Caswell
<matt@openssl.org>
Mon, 30 Jan 2017 10:18:24 +0000
(10:18 +0000)
Based on review feedback
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2259)
ssl/packet.c
patch
|
blob
|
history
diff --git
a/ssl/packet.c
b/ssl/packet.c
index 87473fbbce9fdb44ccf60929d2b4792b539b8aa1..3479f1fed8b2a0d4421aef199455d425411fa16b 100644
(file)
--- a/
ssl/packet.c
+++ b/
ssl/packet.c
@@
-232,12
+232,10
@@
int WPACKET_fill_lengths(WPACKET *pkt)
if (pkt->subs == NULL)
return 0;
- sub = pkt->subs;
- do {
+ for (sub = pkt->subs; sub != NULL; sub = sub->parent) {
if (!wpacket_intern_close(pkt, sub, 0))
return 0;
- sub = sub->parent;
- } while (sub != NULL);
+ }
return 1;
}