Changes between Version 1 and Version 2 of Ticket #135, comment 2


Ignore:
Timestamp:
03/30/12 07:39:58 (12 years ago)
Author:
Bruno Macadré

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #135, comment 2

    v1 v2  
    22
    33In ''src/http/ngx_http_script.c'' we have this small piece of code (line 547->550) :
    4 ''while (*(uintptr_t *) e.ip) {''
    5         ''code = *(ngx_http_script_code_pt *) e.ip;''
    6         ''code((ngx_http_script_engine_t *) &e);''
    7 ''}''
     4
     5{{{
     6while (*(uintptr_t *) e.ip) {
     7        code = *(ngx_http_script_code_pt *) e.ip;
     8        code((ngx_http_script_engine_t *) &e);
     9}
     10
     11}}}
    812
    913Before this piece of code :