From: Cristian Toader Date: Fri, 6 Sep 2013 09:30:01 +0000 (+0300) Subject: replaced strdup with tor_strdup X-Git-Tag: tor-0.2.5.1-alpha~39^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=839ff0063d3fca10a64abf69ab27d1fd88456889;p=thirdparty%2Ftor.git replaced strdup with tor_strdup --- diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 0c2145f846..7e77ea1766 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -784,7 +784,7 @@ sandbox_cfg_allow_stat64_filename(sandbox_cfg_t **cfg, char *file, int fr) { sandbox_cfg_t *elem = NULL; - elem = new_element(SCMP_SYS(stat64), 0, (intptr_t) strdup(file)); + elem = new_element(SCMP_SYS(stat64), 0, (intptr_t) tor_strdup(file)); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; @@ -827,7 +827,7 @@ sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file, int fr) { sandbox_cfg_t *elem = NULL; - elem = new_element(SCMP_SYS(open), 0, (intptr_t) strdup(file)); + elem = new_element(SCMP_SYS(open), 0, (intptr_t) tor_strdup(file)); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; @@ -870,7 +870,7 @@ sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file, int fr) { sandbox_cfg_t *elem = NULL; - elem = new_element(SCMP_SYS(openat), 1, (intptr_t) strdup(file)); + elem = new_element(SCMP_SYS(openat), 1, (intptr_t) tor_strdup(file)); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; @@ -913,7 +913,7 @@ sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, char *com) { sandbox_cfg_t *elem = NULL; - elem = new_element(SCMP_SYS(execve), 1, (intptr_t) strdup(com)); + elem = new_element(SCMP_SYS(execve), 1, (intptr_t) tor_strdup(com)); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1;