1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r22617: assume we have defered elements if the type is just provides via

'declare' this should fix the problem with the winbind IRPC calls

metze
(This used to be commit 5abbb4673a)
This commit is contained in:
Stefan Metzmacher 2007-05-01 01:57:17 +00:00 committed by Gerald (Jerry) Carter
parent b7e20c87e3
commit 118313f9a3

View File

@ -281,6 +281,8 @@ sub can_contain_deferred($)
my $type = getType($e->{TYPE});
return 1 if ($type->{TYPE} eq "DECLARE"); # assume the worst
foreach my $x (@{$type->{DATA}->{ELEMENTS}}) {
return 1 if ($x->{POINTERS});
return 1 if (can_contain_deferred ($x));