Changeset 1642 for pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
- Timestamp:
- Dec 28, 2007 7:00:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
r1601 r1642 214 214 } 215 215 216 #if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6!=0 216 217 if (appHostResolver6_ == NULL) { 217 218 if (Connection()) … … 224 225 goto on_error; 225 226 } 227 #endif 228 226 229 227 230 isResolverInitialized_ = true; … … 239 242 { 240 243 if (isResolverInitialized_) { 241 hostResolver_.Close(); 244 hostResolver_.Close(); 245 #if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6!=0 242 246 hostResolver6_.Close(); 243 isResolverInitialized_ = false; 247 #endif 248 isResolverInitialized_ = false; 244 249 } 245 250 … … 324 329 err = os->Initialize(); 325 330 if (err != KErrNone) 326 goto on_error;331 return status; 327 332 328 333 /* Initialize exception ID for the pool. … … 331 336 status = pj_exception_id_alloc("PJLIB/No memory", &PJ_NO_MEMORY_EXCEPTION); 332 337 if (status != PJ_SUCCESS) 333 return status;338 goto on_error; 334 339 335 340 PJ_LOG(5,(THIS_FILE, "PJLIB initialized."));
Note: See TracChangeset
for help on using the changeset viewer.