summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/ndr_security.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-02-23 10:54:59 +0100
committerVolker Lendecke <vl@samba.org>2008-02-23 10:54:59 +0100
commit9712e3c11c69e2a40ea7c156dd3515dafed833ea (patch)
tree1043f0e5c4a209e0169268f4d4dab012a8e8fab1 /source3/librpc/gen_ndr/ndr_security.c
parent29d70de83c8406b9cd8b5ac9b32e49f48208ee90 (diff)
downloadsamba-9712e3c11c69e2a40ea7c156dd3515dafed833ea.tar.gz
samba-9712e3c11c69e2a40ea7c156dd3515dafed833ea.tar.bz2
samba-9712e3c11c69e2a40ea7c156dd3515dafed833ea.zip
make idl: Check return value of asprintf
(This used to be commit d9fb7d7bdcd0e54838ff0b1cb64a7e75d8cd726a)
Diffstat (limited to 'source3/librpc/gen_ndr/ndr_security.c')
-rw-r--r--source3/librpc/gen_ndr/ndr_security.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/librpc/gen_ndr/ndr_security.c b/source3/librpc/gen_ndr/ndr_security.c
index 8ab56dd914..cbeabf48e5 100644
--- a/source3/librpc/gen_ndr/ndr_security.c
+++ b/source3/librpc/gen_ndr/ndr_security.c
@@ -552,8 +552,7 @@ _PUBLIC_ void ndr_print_security_acl(struct ndr_print *ndr, const char *name, co
ndr->depth++;
for (cntr_aces_0=0;cntr_aces_0<r->num_aces;cntr_aces_0++) {
char *idx_0=NULL;
- asprintf(&idx_0, "[%d]", cntr_aces_0);
- if (idx_0) {
+ if (asprintf(&idx_0, "[%d]", cntr_aces_0) != -1) {
ndr_print_security_ace(ndr, "aces", &r->aces[cntr_aces_0]);
free(idx_0);
}
@@ -981,8 +980,7 @@ _PUBLIC_ void ndr_print_security_token(struct ndr_print *ndr, const char *name,
ndr->depth++;
for (cntr_sids_0=0;cntr_sids_0<r->num_sids;cntr_sids_0++) {
char *idx_0=NULL;
- asprintf(&idx_0, "[%d]", cntr_sids_0);
- if (idx_0) {
+ if (asprintf(&idx_0, "[%d]", cntr_sids_0) != -1) {
ndr_print_ptr(ndr, "sids", r->sids[cntr_sids_0]);
ndr->depth++;
if (r->sids[cntr_sids_0]) {