X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Flib%2Ftools.c;h=c0d3f9f1e00f0ef063ae6482f0785b84980cabfb;hb=b003e38343e1cc97856cdf763215f6f5eb68ba63;hp=f520ee2d96b5365d2876a8385fbd50b6788672cb;hpb=898052f7e31a705e05a623c26658d08a36910ce5;p=citadel.git diff --git a/libcitadel/lib/tools.c b/libcitadel/lib/tools.c index f520ee2d9..c0d3f9f1e 100644 --- a/libcitadel/lib/tools.c +++ b/libcitadel/lib/tools.c @@ -573,7 +573,7 @@ void fmt_date(char *buf, size_t n, time_t thetime, int seconds) { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; - strcpy(buf, ""); + *buf = '\0'; localtime_r(&thetime, &tm); hour = tm.tm_hour; @@ -835,7 +835,7 @@ void urlesc(char *outbuf, size_t oblen, char *strbuf) int a, b, c, len, eclen, olen; char *ec = " +#&;`'|*?-~<>^()[]{}/$\"\\"; - strcpy(outbuf, ""); + *outbuf = '\0'; len = strlen(strbuf); eclen = strlen(ec); olen = 0;