diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-23 10:26:52 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-23 10:26:52 +0100 |
commit | bd95d6d5dbd27e2b904f7907ef39766159d0afcf (patch) | |
tree | 138138fad7b4e090bdd5e61ee0604ecfdc6e78b0 /source4/pidl/lib | |
parent | e9b0056586f6e57d4d1243c5622c568497e04d38 (diff) | |
download | samba-bd95d6d5dbd27e2b904f7907ef39766159d0afcf.tar.gz samba-bd95d6d5dbd27e2b904f7907ef39766159d0afcf.tar.xz samba-bd95d6d5dbd27e2b904f7907ef39766159d0afcf.zip |
Respect the return value of asprintf
This removes tons of warnings
warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result
for me. Lots of that kind left though :-)
(This used to be commit ba29219ea243cc217ab3522b036a82ff8dfeedc8)
Diffstat (limited to 'source4/pidl/lib')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm b/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm index ef3eb3dbcf6..a959dc84f60 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm @@ -775,8 +775,7 @@ sub ParseElementPrint($$$$) $self->pidl("for ($counter=0;$counter<$length;$counter++) {"); $self->indent; $self->pidl("char *idx_$l->{LEVEL_INDEX}=NULL;"); - $self->pidl("asprintf(&idx_$l->{LEVEL_INDEX}, \"[\%d]\", $counter);"); - $self->pidl("if (idx_$l->{LEVEL_INDEX}) {"); + $self->pidl("if (asprintf(&idx_$l->{LEVEL_INDEX}, \"[\%d]\", $counter) != -1) {"); $self->indent; $var_name = get_array_element($var_name, $counter); |