mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r4858: a better fix for alignment of enumerated types (I'm not even sure why
the last fix worked at all)
(This used to be commit 99cef2e5a0
)
This commit is contained in:
parent
f19049c9c9
commit
9d79025e5b
@ -331,12 +331,12 @@ sub type_align($)
|
||||
if (need_wire_pointer($e)) {
|
||||
return 4;
|
||||
}
|
||||
if (my $ret = $type_alignments{$type}) {
|
||||
return $ret;
|
||||
}
|
||||
|
||||
if (is_enum($type)) {
|
||||
my $ret = type_align(get_enum($type));
|
||||
$type = enum_type_fn(get_enum($type));
|
||||
}
|
||||
|
||||
if (my $ret = $type_alignments{$type}) {
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user