summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-03 15:19:31 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-03 15:19:31 +0000
commited98898bb501d02e69093d34961bf1fb46d2ed4d (patch)
treee068af64b6db7985a173fe39a7559356608c108d /pjlib/include/pj/string.h
parent63147d55f091ec8ba1a5b57cb04b421938ec9fde (diff)
Change all pj_memset to pj_bzero(), where applicable
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@582 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/string.h')
-rw-r--r--pjlib/include/pj/string.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/pjlib/include/pj/string.h b/pjlib/include/pj/string.h
index 7c513e7c..4466567e 100644
--- a/pjlib/include/pj/string.h
+++ b/pjlib/include/pj/string.h
@@ -552,7 +552,11 @@ PJ_DECL(int) pj_utoa_pad( unsigned long val, char *buf, int min_dig, int pad);
*/
PJ_INLINE(void) pj_bzero(void *dst, pj_size_t size)
{
+#if defined(PJ_HAS_BZERO) && PJ_HAS_BZERO!=0
bzero(dst, size);
+#else
+ memset(dst, 0, size);
+#endif
}