Skip to content
Snippets Groups Projects
Commit b060e865 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#4874] Fix conditional jump based on uninitialized value

parent f399a3fb
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
int Conference::count = 0;
Conference::Conference() : _id(""), _confState(Active_Atached), _nbParticipant(0)
Conference::Conference() : _id (""), _confState (Active_Atached), _nbParticipant (0)
{
_nbParticipant = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment