diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2019-12-13 16:51:08 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2019-12-13 16:51:08 +0000 |
| commit | 856462eaaec9052a60d62b66076257e7fad337c7 (patch) | |
| tree | f331b79154052fd6dc5f70c176975966370af8d9 /source/components/utilities | |
| parent | 858f47305dae045d81f39451ade697ba99b3266f (diff) | |
Notes
Diffstat (limited to 'source/components/utilities')
| -rw-r--r-- | source/components/utilities/utids.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/components/utilities/utids.c b/source/components/utilities/utids.c index 513548c24a9e..5fcfbf66809e 100644 --- a/source/components/utilities/utids.c +++ b/source/components/utilities/utids.c @@ -466,8 +466,7 @@ AcpiUtExecute_CID ( { /* Copy the String CID from the returned object */ - AcpiUtSafeStrcpy (NextIdString, CidObjects[i]->String.Length + 1, - CidObjects[i]->String.Pointer); + strcpy (NextIdString, CidObjects[i]->String.Pointer); Length = CidObjects[i]->String.Length + 1; } |
