Bug #5213 » date_parse.c.patch
| ext/date/date_parse.c | ||
|---|---|---|
| 
     	    char *s, *p; 
   | 
||
| 
     	    VALUE sign; 
   | 
||
| 
     	    VALUE hour = Qnil, min = Qnil, sec = Qnil; 
   | 
||
| 
     	    volatile VALUE str_orig; 
   | 
||
| 
     	    s = RSTRING_PTR(str); 
   | 
||
| 
     	    str_orig = str; 
   | 
||
| 
     	    if (strncmp(s, "gmt", 3) == 0 || 
   | 
||
| 
     		strncmp(s, "utc", 3) == 0) 
   | 
||