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
- There is no way to adjust the HDR Paper White value of the Unity Editor's interface, making it difficult/uncomfortable for some developers to work on very dark/bright scenes in HDR
- Animator window has a dropdown button that throws “MissingReferenceException” error on a new project when the previous project had a GameObject with an animation
- Animator State name overflows outside the visual box when the State has a long name
- UI Document file remains marked as Dirty after Undoing made changes
- Switching between UI Documents with different Canvas sizes marks the UXML file as dirty
Add comment