Skip to content

Commit

Permalink
Fix invalid call to free
Browse files Browse the repository at this point in the history
  • Loading branch information
njansson committed Jan 23, 2025
1 parent 9002a6c commit 7b29971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adt/htable_i8.f90
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module subroutine htable_i8_init(this, size, data)
class(*), intent(inout), optional :: data !< Data to associate with @a key
integer :: i

call htable_free(this)
call this%free()

if (size .lt. 4) then
size = 4
Expand Down

0 comments on commit 7b29971

Please sign in to comment.