Fix missing header finalization and unchecked faidx return#2536
Open
sirus20x6 wants to merge 1 commit intosamtools:developfrom
Open
Fix missing header finalization and unchecked faidx return#2536sirus20x6 wants to merge 1 commit intosamtools:developfrom
sirus20x6 wants to merge 1 commit intosamtools:developfrom
Conversation
In gensample_to_vcf (vcfconvert.c), add the missing bcf_hdr_add_sample(header, NULL) finalization call after the sample addition loop, matching the pattern used in haplegendsample_to_vcf and other converters. In indel_ctx_type (vcfstats.c), check faidx_fetch_seq return for NULL before dereferencing. If the chromosome is absent from the reference, return the default indel length with nrep=0, nlen=0 instead of crashing with a NULL pointer dereference.
f147033 to
119ffec
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bcf_hdr_add_sample(args->header, NULL)ingensample_to_vcf(vcfconvert.c) — header was not finalized after adding samples, matching the pattern inhaplegendsample_to_vcffaidx_fetch_seqreturn inindel_ctx_type(vcfstats.c) — prevents NULL dereference when chromosome is not in the referenceTest plan
bcftools convert --gensample2vcfwith sample filesbcftools stats --ref-filewith mismatched reference