diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-05-05 16:16:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-05 16:36:51 -0700 |
commit | f59154c53fac0bfee52393247beadf0474770351 (patch) | |
tree | 002722bc8d24180077a35799e43dd75a19feb923 /fs | |
parent | 252795264df50a6c9eee604d29989854d5558139 (diff) | |
download | linux-3.10-f59154c53fac0bfee52393247beadf0474770351.tar.gz linux-3.10-f59154c53fac0bfee52393247beadf0474770351.tar.bz2 linux-3.10-f59154c53fac0bfee52393247beadf0474770351.zip |
[PATCH] fs/udf/udftime.c: fix off by one error
This patch fixes an off by one error found by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/udf/udftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/udftime.c b/fs/udf/udftime.c index c2634bda6b5..457a8fe2857 100644 --- a/fs/udf/udftime.c +++ b/fs/udf/udftime.c @@ -103,7 +103,7 @@ udf_stamp_to_time(time_t *dest, long *dest_usec, kernel_timestamp src) offset = 0; if ((src.year < EPOCH_YEAR) || - (src.year > EPOCH_YEAR+MAX_YEAR_SECONDS)) + (src.year >= EPOCH_YEAR+MAX_YEAR_SECONDS)) { *dest = -1; *dest_usec = -1; |