Changeset 8302 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Jun 9, 2006, 7:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_stream.cc
r8244 r8302 122 122 i->second.handshake = NULL; 123 123 } 124 125 if ( i->second.connectionMonitor ) 126 { 127 delete i->second.connectionMonitor; 128 i->second.connectionMonitor = NULL; 129 } 124 130 } 125 131 … … 198 204 delete peers[0].handshake; 199 205 peers[0].handshake = NULL; 206 207 if ( peers[0].connectionMonitor ) 208 delete peers[0].connectionMonitor; 209 peers[0].connectionMonitor = NULL; 200 210 } 201 211 } … … 282 292 it->second.socket = NULL; 283 293 294 if ( it->second.connectionMonitor ) 295 delete it->second.connectionMonitor; 296 it->second.connectionMonitor = NULL; 297 284 298 if ( it->second.handshake ) 285 299 delete it->second.handshake;
Note: See TracChangeset
for help on using the changeset viewer.