Skip to content

Commit

Permalink
Fix memory leak caused by unused alphabet in Pipeline._scan_loop_file
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Feb 20, 2024
1 parent b4eee8b commit b7afeb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhmmer/plan7.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -6325,7 +6325,7 @@ cdef class Pipeline:
) except 1 nogil:
cdef int status
cdef P7_OPROFILE* om
cdef ESL_ALPHABET* abc = NULL
cdef ESL_ALPHABET* abc = <ESL_ALPHABET*> sq.abc

# configure the pipeline for the current sequence
status = libhmmer.p7_pipeline.p7_pli_NewSeq(pli, sq)
Expand Down

0 comments on commit b7afeb3

Please sign in to comment.