Skip to content

Commit

Permalink
Fix double free
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmstill committed Mar 28, 2024
1 parent 26028a7 commit f8bb0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biscuit/src/authorizer.zig
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ pub const Authorizer = struct {
while (it.next()) |block_ids| {
block_ids.deinit();
}
authorizer.public_key_to_block_id.deinit();
}
authorizer.policies.deinit();
}

pub fn authorizerTrustedOrigins(authorizer: *Authorizer) !TrustedOrigins {
Expand Down

0 comments on commit f8bb0f3

Please sign in to comment.