diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-05-11 19:44:46 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-05-11 19:44:46 +0000 |
commit | 08f384fd06a468247b6a87830595465b915a32e5 (patch) | |
tree | 6dbe239b26f5c9a865646ddfb8d592fde958c99c /www/waterfox/files/patch-bug1436809 | |
parent | New port: security/py-winrm (diff) |
www/waterfox: update to 56.1.0.89
Changes: https://github.com/MrAlex94/Waterfox/compare/56.1.0...2bb1a86e5dbd6
Diffstat (limited to 'www/waterfox/files/patch-bug1436809')
-rw-r--r-- | www/waterfox/files/patch-bug1436809 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/www/waterfox/files/patch-bug1436809 b/www/waterfox/files/patch-bug1436809 deleted file mode 100644 index 541eaa1562ee..000000000000 --- a/www/waterfox/files/patch-bug1436809 +++ /dev/null @@ -1,27 +0,0 @@ -commit 91f4336a7ddc -Author: Michal Novotny <michal.novotny@gmail.com> -Date: Mon Apr 2 12:59:18 2018 -0400 - - Bug 1436809 - Check that stream message was converted to string correctly. r=valentin, a=abillings - - --HG-- - extra : rebase_source : c81e8000cd7e41d8928e6ee0c6eb6ee823debc23 - extra : source : b229809d17ff18263becfad6f9777c9ab0165279 ---- - netwerk/protocol/websocket/WebSocketChannel.cpp | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git netwerk/protocol/websocket/WebSocketChannel.cpp netwerk/protocol/websocket/WebSocketChannel.cpp -index a08655f95d8c..a17b2f382d23 100644 ---- netwerk/protocol/websocket/WebSocketChannel.cpp -+++ netwerk/protocol/websocket/WebSocketChannel.cpp -@@ -1052,6 +1052,9 @@ public: - nsresult rv = NS_ReadInputStreamToString(mMsg.pStream, *temp, mLength); - - NS_ENSURE_SUCCESS(rv, rv); -+ if (temp->Length() != mLength) { -+ return NS_ERROR_UNEXPECTED; -+ } - - mMsg.pStream->Close(); - mMsg.pStream->Release(); |