From: Cristian Toader Date: Thu, 29 Aug 2013 09:41:17 +0000 (+0300) Subject: small fixes in documentation and sandbox_getaddrinfo() X-Git-Tag: tor-0.2.5.1-alpha~39^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e2b9d28442a6291f4de5d039d4035882b12845f;p=thirdparty%2Ftor.git small fixes in documentation and sandbox_getaddrinfo() --- diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 13d4ce927c..39f6932e2a 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -892,7 +892,7 @@ sandbox_getaddrinfo(const char *name, struct addrinfo **res) } *res = NULL; *res = (struct addrinfo *)malloc(sizeof(struct addrinfo)); - if (!res) { + if (*res == NULL) { return -2; } diff --git a/src/common/sandbox.h b/src/common/sandbox.h index d7e1172864..605df7f34a 100644 --- a/src/common/sandbox.h +++ b/src/common/sandbox.h @@ -68,10 +68,10 @@ typedef int (*sandbox_filter_func_t)(scmp_filter_ctx ctx, /** Type that will be used in step 3 in order to manage multiple sandboxes.*/ typedef struct { - // function pointers associated with the filter + /** function pointers associated with the filter */ sandbox_filter_func_t *filter_func; - // filter function pointer parameters + /** filter function pointer parameters */ sandbox_cfg_t *filter_dynamic; } sandbox_t;