mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-30 00:00:16 +01:00
ws union member must have actual struct at start not pointer
Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
parent
9dbfe07798
commit
26d4249a3f
2 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,9 @@ Fixes
|
||||||
get sent a content-length resulting in the link hanging until the peer closed
|
get sent a content-length resulting in the link hanging until the peer closed
|
||||||
it. attack.sh updated to add a test for this.
|
it. attack.sh updated to add a test for this.
|
||||||
|
|
||||||
|
3) MINOR An error about hdr struct in _lws_ws_related is corrected, it's not
|
||||||
|
known to affect anything until after it was fixed
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
@ -953,7 +953,7 @@ struct _lws_header_related {
|
||||||
|
|
||||||
struct _lws_websocket_related {
|
struct _lws_websocket_related {
|
||||||
/* cheapest way to deal with ah overlap with ws union transition */
|
/* cheapest way to deal with ah overlap with ws union transition */
|
||||||
struct _lws_header_related *hdr;
|
struct _lws_header_related hdr;
|
||||||
char *rx_ubuf;
|
char *rx_ubuf;
|
||||||
unsigned int rx_ubuf_alloc;
|
unsigned int rx_ubuf_alloc;
|
||||||
struct lws *rx_draining_ext_list;
|
struct lws *rx_draining_ext_list;
|
||||||
|
|
Loading…
Add table
Reference in a new issue