Changeset 390 for trunk/openjdk/jdk/src/share/native
- Timestamp:
- Jul 2, 2012, 3:05:26 PM (13 years ago)
- Location:
- trunk/openjdk/jdk/src/share/native
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/native/java/util/zip/zip_util.c
r388 r390 1 1 /* 2 * Copyright (c) 1995, 20 06, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * … … 451 451 jint count = 0; 452 452 ptrdiff_t i; 453 for (i = 0; i + CENHDR < end - beg; i += CENSIZE(beg + i))453 for (i = 0; i + CENHDR <= end - beg; i += CENSIZE(beg + i)) 454 454 count++; 455 455 return count; -
trunk/openjdk/jdk/src/share/native/sun/awt/image/jpeg/imageioJPEG.c
r309 r390 1 1 /* 2 * Copyright (c) 2000, 201 0, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 *
Note:
See TracChangeset
for help on using the changeset viewer.