widl: Arrays should have freeing code generated on the server side, even if they are [in] parameters.

This commit is contained in:
Rob Shearman 2007-12-10 13:30:28 +00:00 committed by Alexandre Julliard
parent 701a25c4b2
commit e6f2329676
1 changed files with 2 additions and 2 deletions

View File

@ -2602,8 +2602,8 @@ static int needs_freeing(const attr_list_t *attrs, const type_t *t, int out)
|| (is_ptr(t)
&& (t->ref->type == RPC_FC_IP
|| is_ptr(t->ref))))
|| (out && (is_string_type(attrs, t)
|| is_array(t)));
|| (out && is_string_type(attrs, t))
|| is_array(t);
}
expr_t *get_size_is_expr(const type_t *t, const char *name)