Fix unintentionally crashing the streamer when requesting FEC with packets sizes over 1024

This commit is contained in:
Cameron Gutman 2017-05-06 16:01:35 -07:00
parent ff4dbbb26d
commit e7f8fd165e

View File

@ -214,6 +214,9 @@ int LiStartConnection(PSERVER_INFORMATION serverInfo, PSTREAM_CONFIGURATION stre
memcpy(&StreamConfig, streamConfig, sizeof(StreamConfig));
RemoteAddrString = strdup(serverInfo->address);
// Because FEC is now supported, we can only support 1024 byte packets
StreamConfig.packetSize = 1024;
// Extract the appversion from the supplied string
if (extractVersionQuadFromString(serverInfo->serverInfoAppVersion,
AppVersionQuad) < 0) {