mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
pidl:NDR/Parser: add missing {start,end}_flags() to ParseElementPrint()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12782 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
295c9f7b32
commit
81bbfb0105
@ -848,8 +848,10 @@ sub ParseElementPrint($$$$$)
|
||||
my $cur_depth = 0;
|
||||
my $ignore_depth = 0xFFFF;
|
||||
|
||||
$self->start_flags($e, $ndr);
|
||||
if ($e->{REPRESENTATION_TYPE} ne $e->{TYPE}) {
|
||||
$self->pidl("ndr_print_$e->{REPRESENTATION_TYPE}($ndr, \"$e->{NAME}\", $var_name);");
|
||||
$self->end_flags($e, $ndr);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -944,6 +946,8 @@ sub ParseElementPrint($$$$$)
|
||||
$self->pidl("$ndr->depth--;");
|
||||
}
|
||||
}
|
||||
|
||||
$self->end_flags($e, $ndr);
|
||||
}
|
||||
|
||||
#####################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user