@@ -354,8 +354,12 @@ private Date getTime(int len, boolean generalized) throws IOException {
354
354
second += toDigit (buf [pos ++], type );
355
355
len -= 2 ;
356
356
// handle fractional seconds (if present)
357
- if (buf [pos ] == '.' || buf [pos ] == ',' ) {
357
+ if (generalized && ( buf [pos ] == '.' || buf [pos ] == ',' ) ) {
358
358
len --;
359
+ if (len == 0 ) {
360
+ throw new IOException ("Parse " + type +
361
+ " time, empty fractional part" );
362
+ }
359
363
pos ++;
360
364
int precision = 0 ;
361
365
while (buf [pos ] != 'Z' &&
@@ -365,6 +369,11 @@ private Date getTime(int len, boolean generalized) throws IOException {
365
369
// store millisecond precision only
366
370
int thisDigit = toDigit (buf [pos ], type );
367
371
precision ++;
372
+ len --;
373
+ if (len == 0 ) {
374
+ throw new IOException ("Parse " + type +
375
+ " time, invalid fractional part" );
376
+ }
368
377
pos ++;
369
378
switch (precision ) {
370
379
case 1 :
@@ -382,7 +391,6 @@ private Date getTime(int len, boolean generalized) throws IOException {
382
391
throw new IOException ("Parse " + type +
383
392
" time, empty fractional part" );
384
393
}
385
- len -= precision ;
386
394
}
387
395
} else
388
396
second = 0 ;
@@ -412,6 +420,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
412
420
413
421
switch (buf [pos ++]) {
414
422
case '+' :
423
+ if (len != 5 ) {
424
+ throw new IOException ("Parse " + type + " time, invalid offset" );
425
+ }
415
426
hr = 10 * toDigit (buf [pos ++], type );
416
427
hr += toDigit (buf [pos ++], type );
417
428
min = 10 * toDigit (buf [pos ++], type );
@@ -424,6 +435,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
424
435
break ;
425
436
426
437
case '-' :
438
+ if (len != 5 ) {
439
+ throw new IOException ("Parse " + type + " time, invalid offset" );
440
+ }
427
441
hr = 10 * toDigit (buf [pos ++], type );
428
442
hr += toDigit (buf [pos ++], type );
429
443
min = 10 * toDigit (buf [pos ++], type );
@@ -436,6 +450,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
436
450
break ;
437
451
438
452
case 'Z' :
453
+ if (len != 1 ) {
454
+ throw new IOException ("Parse " + type + " time, invalid format" );
455
+ }
439
456
break ;
440
457
441
458
default :
0 commit comments