@@ -320,7 +320,7 @@ void os::init_system_properties_values() {
320
320
321
321
#ifndef __APPLE__
322
322
323
- // Buffer that fits several sprintfs .
323
+ // Buffer that fits several snprintfs .
324
324
// Note that the space for the colon and the trailing null are provided
325
325
// by the nulls included by the sizeof operator.
326
326
const size_t bufsize =
@@ -376,17 +376,16 @@ void os::init_system_properties_values() {
376
376
const char *v_colon = " :" ;
377
377
if (v == NULL ) { v = " " ; v_colon = " " ; }
378
378
// That's +1 for the colon and +1 for the trailing '\0'.
379
- char *ld_library_path = NEW_C_HEAP_ARRAY (char ,
380
- strlen (v) + 1 +
381
- sizeof (SYS_EXT_DIR) + sizeof (" /lib/" ) + strlen (cpu_arch) + sizeof (DEFAULT_LIBPATH) + 1 ,
382
- mtInternal);
383
- sprintf (ld_library_path, " %s%s" SYS_EXT_DIR " /lib/%s:" DEFAULT_LIBPATH, v, v_colon, cpu_arch);
379
+ const size_t ld_library_path_size = strlen (v) + 1 + sizeof (SYS_EXT_DIR) +
380
+ sizeof (" /lib/" ) + strlen (cpu_arch) + sizeof (DEFAULT_LIBPATH) + 1 ;
381
+ char *ld_library_path = NEW_C_HEAP_ARRAY (char , ld_library_path_size, mtInternal);
382
+ os::snprintf_checked (ld_library_path, ld_library_path_size, " %s%s" SYS_EXT_DIR " /lib/%s:" DEFAULT_LIBPATH, v, v_colon, cpu_arch);
384
383
Arguments::set_library_path (ld_library_path);
385
384
FREE_C_HEAP_ARRAY (char , ld_library_path);
386
385
}
387
386
388
387
// Extensions directories.
389
- sprintf (buf, " %s" EXTENSIONS_DIR " :" SYS_EXT_DIR EXTENSIONS_DIR, Arguments::get_java_home ());
388
+ os::snprintf_checked (buf, bufsize , " %s" EXTENSIONS_DIR " :" SYS_EXT_DIR EXTENSIONS_DIR, Arguments::get_java_home ());
390
389
Arguments::set_ext_dirs (buf);
391
390
392
391
FREE_C_HEAP_ARRAY (char , buf);
@@ -401,7 +400,7 @@ void os::init_system_properties_values() {
401
400
size_t system_ext_size = strlen (user_home_dir) + sizeof (SYS_EXTENSIONS_DIR) +
402
401
sizeof (SYS_EXTENSIONS_DIRS);
403
402
404
- // Buffer that fits several sprintfs .
403
+ // Buffer that fits several snprintfs .
405
404
// Note that the space for the colon and the trailing null are provided
406
405
// by the nulls included by the sizeof operator.
407
406
const size_t bufsize =
@@ -471,11 +470,9 @@ void os::init_system_properties_values() {
471
470
// could cause a change in behavior, but Apple's Java6 behavior
472
471
// can be achieved by putting "." at the beginning of the
473
472
// JAVA_LIBRARY_PATH environment variable.
474
- char *ld_library_path = NEW_C_HEAP_ARRAY (char ,
475
- strlen (v) + 1 + strlen (l) + 1 +
476
- system_ext_size + 3 ,
477
- mtInternal);
478
- sprintf (ld_library_path, " %s%s%s%s%s" SYS_EXTENSIONS_DIR " :" SYS_EXTENSIONS_DIRS " :." ,
473
+ const size_t ld_library_path_size = strlen (v) + 1 + strlen (l) + 1 + system_ext_size + 3 ;
474
+ char *ld_library_path = NEW_C_HEAP_ARRAY (char , ld_library_path_size, mtInternal);
475
+ os::snprintf_checked (ld_library_path, ld_library_path_size, " %s%s%s%s%s" SYS_EXTENSIONS_DIR " :" SYS_EXTENSIONS_DIRS " :." ,
479
476
v, v_colon, l, l_colon, user_home_dir);
480
477
Arguments::set_library_path (ld_library_path);
481
478
FREE_C_HEAP_ARRAY (char , ld_library_path);
@@ -486,7 +483,7 @@ void os::init_system_properties_values() {
486
483
// Note that the space for the colon and the trailing null are provided
487
484
// by the nulls included by the sizeof operator (so actually one byte more
488
485
// than necessary is allocated).
489
- sprintf (buf, " %s" SYS_EXTENSIONS_DIR " :%s" EXTENSIONS_DIR " :" SYS_EXTENSIONS_DIRS,
486
+ os::snprintf_checked (buf, bufsize , " %s" SYS_EXTENSIONS_DIR " :%s" EXTENSIONS_DIR " :" SYS_EXTENSIONS_DIRS,
490
487
user_home_dir, Arguments::get_java_home ());
491
488
Arguments::set_ext_dirs (buf);
492
489
0 commit comments