diff options
Diffstat (limited to 'gcc/java/jcf-path.c')
-rw-r--r-- | gcc/java/jcf-path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/jcf-path.c b/gcc/java/jcf-path.c index 5f509b7..65cd80e 100644 --- a/gcc/java/jcf-path.c +++ b/gcc/java/jcf-path.c @@ -132,7 +132,7 @@ add_entry (struct entry **entp, const char *filename, int is_system) int len; struct entry *n; - n = ALLOC (sizeof (struct entry)); + n = XNEW (struct entry); n->flags = is_system ? FLAG_SYSTEM : 0; n->next = NULL; |