comparison src/core/ngx_cycle.c @ 996:7fdcb5b9f063

fix label name
author Igor Sysoev <igor@sysoev.ru>
date Tue, 09 Jan 2007 16:02:29 +0000
parents 4b0d9e2b31c6
children 899050121f43
comparison
equal deleted inserted replaced
995:4b0d9e2b31c6 996:7fdcb5b9f063
407 != NGX_OK) 407 != NGX_OK)
408 { 408 {
409 goto failed; 409 goto failed;
410 } 410 }
411 411
412 goto found; 412 goto shm_zone_found;
413 } 413 }
414 414
415 ngx_shm_free(&oshm_zone[n].shm); 415 ngx_shm_free(&oshm_zone[n].shm);
416 416
417 break; 417 break;
455 455
456 if (shm_zone[i].init(&shm_zone[i], NULL) != NGX_OK) { 456 if (shm_zone[i].init(&shm_zone[i], NULL) != NGX_OK) {
457 goto failed; 457 goto failed;
458 } 458 }
459 459
460 found: 460 shm_zone_found:
461 461
462 continue; 462 continue;
463 } 463 }
464 464
465 465