You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. merge_localized_numberG_format_field: BCF_BT_INT32 case incorrectly
used le_to_i16 instead of le_to_i32, causing wrong byte conversion
for 32-bit integer FORMAT fields.
2. init_local_alleles: INT8 PL case lacked bounds checking on val before
indexing into pl2prob[], risking out-of-bounds access. Added the same
clamping guard (val>=0 && val<PL2PROB_MAX) already present in the
INT16 and INT32 cases.
3. update_local_alleles: vector_end padding loop wrote to src[j] instead
of dst[j], leaving the destination buffer with uninitialized trailing
entries.
0 commit comments