diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-09-29 17:08:30 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-09-29 17:08:30 +0000 |
| commit | 2c673001fb88105f2d160032c4d4b76cb518e37f (patch) | |
| tree | 3fc3b6aef8822267bd455907a6fce55c3f98b2ed /source/compiler/aslstartup.c | |
| parent | 0810e26699e1b40b9384eca2137be6155de0a5ba (diff) | |
Diffstat (limited to 'source/compiler/aslstartup.c')
| -rw-r--r-- | source/compiler/aslstartup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler/aslstartup.c b/source/compiler/aslstartup.c index 72c0d641e1ff..fa1ac25bd9ed 100644 --- a/source/compiler/aslstartup.c +++ b/source/compiler/aslstartup.c @@ -410,7 +410,7 @@ AslDoDisassembly ( Gbl_Files[ASL_FILE_INPUT].Filename = NULL; - CmDeleteCaches (); + UtDeleteLocalCaches (); return (AE_OK); } @@ -453,7 +453,7 @@ AslDoOneFile ( /* Take a copy of the input filename, convert any backslashes */ Gbl_Files[ASL_FILE_INPUT].Filename = - UtStringCacheCalloc (strlen (Filename) + 1); + UtLocalCacheCalloc (strlen (Filename) + 1); strcpy (Gbl_Files[ASL_FILE_INPUT].Filename, Filename); UtConvertBackslashes (Gbl_Files[ASL_FILE_INPUT].Filename); |
