Changeset 211 for branches/1.0/utils.c
- Timestamp:
- 10/02/2006 01:15:04 AM (2 years ago)
- Files:
-
- 1 modified
-
branches/1.0/utils.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/utils.c
r19 r211 335 335 sandbox->filename = filename; 336 336 337 #ifdef E_STRICT 338 sandbox->orig_user_error_handler_error_reporting = EG(user_error_handler_error_reporting); 339 EG(user_error_handler_error_reporting) &= ~E_STRICT; 340 #endif 341 337 342 return sandbox; 338 343 } … … 357 362 /* install class */ 358 363 while (b != NULL) { 359 xc_install_class(sandbox->filename, (xc_cest_t*) b->pData,364 xc_install_class(sandbox->filename, (xc_cest_t*) b->pData, 360 365 BUCKET_KEY_TYPE(b), BUCKET_KEY(b), b->nKeyLength TSRMLS_CC); 361 366 b = b->pListNext; … … 397 402 memcpy(&CG(open_files), &OG(open_files), sizeof(CG(open_files))); 398 403 404 #ifdef E_STRICT 405 EG(user_error_handler_error_reporting) = sandbox->orig_user_error_handler_error_reporting; 406 #endif 407 399 408 if (sandbox->alloc) { 400 409 efree(sandbox);

