diff options
Diffstat (limited to 'gcc/java/jcf-parse.c')
-rw-r--r-- | gcc/java/jcf-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index 30fc4a4..090120a 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -648,7 +648,7 @@ init_outgoing_cpool () { current_constant_pool_data_ref = NULL_TREE; outgoing_cpool = (struct CPool *)xmalloc (sizeof (struct CPool)); - bzero (outgoing_cpool, sizeof (struct CPool)); + memset (outgoing_cpool, 0, sizeof (struct CPool)); } static void |