|
@@ -448,7 +448,7 @@ fail:
|
|
|
*/
|
|
|
static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
|
|
|
{
|
|
|
- void *pos = e->pos;
|
|
|
+ void *saved_pos = e->pos;
|
|
|
|
|
|
/* exec table is optional */
|
|
|
if (unpack_nameX(e, AA_STRUCT, "xtable")) {
|
|
@@ -511,7 +511,7 @@ static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
|
|
|
|
|
|
fail:
|
|
|
aa_free_domain_entries(&profile->file.trans);
|
|
|
- e->pos = pos;
|
|
|
+ e->pos = saved_pos;
|
|
|
return 0;
|
|
|
}
|
|
|
|