diff options
author | Patrick Griffis <pgriffis@igalia.com> | 2021-09-20 15:41:31 -0500 |
---|---|---|
committer | Patrick Griffis <pgriffis@igalia.com> | 2021-09-20 15:43:27 -0500 |
commit | fb98e9a8c3062c75357b961543af091de2dd5459 (patch) | |
tree | 28d2c1f5aa61b361139e8cc4fb499ac48e610d5f /libsoup/websocket/soup-websocket-connection.c | |
parent | d70e455be01df7816dadcf48138db84cbfd010cd (diff) | |
download | libsoup-fb98e9a8c3062c75357b961543af091de2dd5459.tar.gz |
Fix possibly uninitialized warnings
Diffstat (limited to 'libsoup/websocket/soup-websocket-connection.c')
-rw-r--r-- | libsoup/websocket/soup-websocket-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/websocket/soup-websocket-connection.c b/libsoup/websocket/soup-websocket-connection.c index 35efaec4..0f5557e4 100644 --- a/libsoup/websocket/soup-websocket-connection.c +++ b/libsoup/websocket/soup-websocket-connection.c @@ -473,7 +473,7 @@ send_message (SoupWebsocketConnection *self, GByteArray *bytes; gsize frame_len; guint8 *outer; - guint8 mask_offset; + guint8 mask_offset = 0; GBytes *filtered_bytes; GList *l; GError *error = NULL; |