Search Issue Tracker
Fixed in 5.4.0
Votes
0
Found in
5.4.0b1
Issue ID
756670
Regression
No
[UNET] Adding the exceptional config to HostTopology causes a program's crash when manager adds a host
1. Open attached soultion
2. Run ChatServer.exe
==>
Program crashes
What is going on inside:
If HostTopology has a special connection config added then a code in NetLibManager invokes
public HostTopologyInternal(HostTopology topology) { ... } and this invokes next function with "i=0"
public ConnectionConfig GetSpecialConnectionConfig(int i)
{
if (i > m_SpecialConnections.Count || i == 0)
throw new ArgumentException("special configuration index is out of valid range");
return m_SpecialConnections[i - 1];
}
This causes an exception to be thrown.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Reverting [SerializeReference] List property creates persistent element overrides in Prefab Variants
- Check mark in Enum element is misaligned when hovered on in Play mode
- Poor contrast on Animation Clip names properties when using the Dark mode
- [Quest][GLES3] Transparent materials disappear due to FullScreenRenderPass on Quest when Multiview/SPI is used with MSAA on OpenGLES3
- Input fields in Search Index Manager shift buttons out of view on long text input
Add comment