File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? 2013, PHP 5.4.24
4
4
5
+ - Date:
6
+ . Fixed bug #66060 (Heap buffer over-read in DateInterval). (Remi)
7
+
5
8
?? ??? 2013, PHP 5.4.23
6
9
7
10
- Core:
Original file line number Diff line number Diff line change 1
- /* Generated by re2c 0.13.5 on Mon Dec 5 22:02:27 2011 */
1
+ /* Generated by re2c 0.13.5 on Wed Nov 27 11:10:58 2013 */
2
2
#line 1 "ext/date/lib/parse_iso_intervals.re"
3
3
/*
4
4
+----------------------------------------------------------------------+
@@ -415,7 +415,7 @@ static int scan(Scanner *s)
415
415
break ;
416
416
}
417
417
ptr ++ ;
418
- } while (* ptr );
418
+ } while (! s -> errors -> error_count && * ptr );
419
419
s -> have_period = 1 ;
420
420
TIMELIB_DEINIT ;
421
421
return TIMELIB_PERIOD ;
Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ isoweek = year4 "-"? "W" weekofyear;
383
383
break ;
384
384
}
385
385
ptr ++ ;
386
- } while (* ptr );
386
+ } while (! s -> errors -> error_count && * ptr );
387
387
s -> have_period = 1 ;
388
388
TIMELIB_DEINIT ;
389
389
return TIMELIB_PERIOD ;
You can’t perform that action at this time.
0 commit comments