@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2024, Quinn Stephens.
|
||||
Copyright (c) 2024-2025, Quinn Stephens.
|
||||
Provided under the BSD 3-Clause license.
|
||||
|
||||
Module Name:
|
||||
@@ -61,7 +61,7 @@ wmemmove (
|
||||
|
||||
/* Check for overlap */
|
||||
if (src > dest || ((wchar_t *)src + count) < (wchar_t *)dest) {
|
||||
/* Low-to-high copy, use wmemcpy() */
|
||||
/* Low-to-high copy */
|
||||
return wmemcpy(dest, src, count);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user