prims.cc (_Jv_NewObjectArray): Fix typo.
2000-04-27 Bryce McKinlay <bryce@albatross.co.nz> * prims.cc (_Jv_NewObjectArray): Fix typo. From-SVN: r33479
This commit is contained in:
parent
9785c68dd5
commit
af4464eb46
@ -1,3 +1,7 @@
|
||||
2000-04-27 Bryce McKinlay <bryce@albatross.co.nz>
|
||||
|
||||
* prims.cc (_Jv_NewObjectArray): Fix typo.
|
||||
|
||||
2000-04-26 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* Makefile.in: Rebuilt.
|
||||
|
@ -377,7 +377,7 @@ _Jv_NewObjectArray (jsize count, jclass elementClass, jobject init)
|
||||
|
||||
// Check for overflow.
|
||||
if (__builtin_expect ((size_t) count >
|
||||
(SIZE_T_MAX - size) / sizeof (jobject), 0));
|
||||
(SIZE_T_MAX - size) / sizeof (jobject), 0))
|
||||
JvThrow (no_memory);
|
||||
|
||||
size += count * sizeof (jobject);
|
||||
|
Loading…
Reference in New Issue
Block a user