Browse Source

Add WebSocketMultiplayerPeer _incoming_packets check bound

(cherry picked from commit 05ad08941b93c513dfd8667148204f10fe20cd8e)
MaxStgs 4 years ago
parent
commit
a93f52ee7e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      modules/websocket/websocket_multiplayer_peer.cpp

+ 2 - 0
modules/websocket/websocket_multiplayer_peer.cpp

@@ -114,6 +114,8 @@ Error WebSocketMultiplayerPeer::get_packet(const uint8_t **r_buffer, int &r_buff
 		_current_packet.data = NULL;
 	}
 
+	ERR_FAIL_COND_V(_incoming_packets.size() == 0, ERR_UNAVAILABLE);
+
 	_current_packet = _incoming_packets.front()->get();
 	_incoming_packets.pop_front();