This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16-epplets.
View the commit online.
commit 2ff9700d9c5f3c2427048a0f14d2d3b02163b4b1
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Jan 17 15:03:01 2025 +0100
Fix warning
Actually fixing incorrect memcpy.
---
epplets/E-PlayCD.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/epplets/E-PlayCD.c b/epplets/E-PlayCD.c
index 7a42500..7cb85bc 100644
--- a/epplets/E-PlayCD.c
+++ b/epplets/E-PlayCD.c
@@ -87,7 +87,7 @@ scroll_cddb_label(void *data)
Epplet_change_label(cddb_label, temp);
temp[MAX_LBL_LEN] = saved_char;
saved_char = temp[0];
- memcpy(data, temp + 1, (size_t)length);
+ memmove(data, temp + 1, (size_t)length);
temp[length - 1] = saved_char;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.