From ce7ce1b948733084e16fb133ec47d622a67dcf61 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 25 Nov 2018 23:13:47 +0100 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libsimple/aligned_wcsndup.h | 2 +- libsimple/wcsndup.h | 2 +- wcsndup.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libsimple/aligned_wcsndup.h b/libsimple/aligned_wcsndup.h index 3378181..b75f661 100644 --- a/libsimple/aligned_wcsndup.h +++ b/libsimple/aligned_wcsndup.h @@ -23,7 +23,7 @@ if (__misalignment)\ __r += (uintptr_t)__a - __misalignment;\ wmemcpy(__r, __s, __n);\ - __r[__n] = '\0';\ + __r[__n] = 0;\ __r;\ }) # ifndef aligned_wcsndupa diff --git a/libsimple/wcsndup.h b/libsimple/wcsndup.h index 0f00d9e..399b5e5 100644 --- a/libsimple/wcsndup.h +++ b/libsimple/wcsndup.h @@ -16,7 +16,7 @@ wchar_t *__r;\ __r = alloca((__n + 1) * sizeof(wchar_t));\ wmemcpy(__r, __s, __n);\ - __r[__n] = '\0';\ + __r[__n] = 0;\ __r;\ }) # ifndef wcsndupa diff --git a/wcsndup.c b/wcsndup.c index 83e227d..ba4e009 100644 --- a/wcsndup.c +++ b/wcsndup.c @@ -16,7 +16,7 @@ libsimple_wcsndup(const wchar_t *s, size_t n) /* TODO test */ if (!ret) enprintf(status, "wcsdup:"); wmemcpy(ret, s, n); - ret[n] = '\0'; + ret[n] = 0; return ret; } -- cgit v1.2.3-70-g09d2