Re: [PATCH 1/2] contrib/plugins/execlog: Add tab to the separator search of insn_disas

2025-06-30 Thread Alex Bennée
Yodel Eldar writes: > On 6/29/25 1:50 PM, Alex Bennée wrote: >> Yodel Eldar writes: >> >>> Currently, execlog searches for a space separator between the >>> instruction mnemonic and operands, but some disassemblers, e.g. Alpha's, >>> use a tab separator instead; this results in a null pointer be

Re: [PATCH 1/2] contrib/plugins/execlog: Add tab to the separator search of insn_disas

2025-06-29 Thread Yodel Eldar
On 6/29/25 1:50 PM, Alex Bennée wrote: Yodel Eldar writes: Currently, execlog searches for a space separator between the instruction mnemonic and operands, but some disassemblers, e.g. Alpha's, use a tab separator instead; this results in a null pointer being passed as the haystack in g_strs

Re: [PATCH 1/2] contrib/plugins/execlog: Add tab to the separator search of insn_disas

2025-06-29 Thread Alex Bennée
Yodel Eldar writes: > Currently, execlog searches for a space separator between the > instruction mnemonic and operands, but some disassemblers, e.g. Alpha's, > use a tab separator instead; this results in a null pointer being passed > as the haystack in g_strstr during a subsequent register sear

[PATCH 1/2] contrib/plugins/execlog: Add tab to the separator search of insn_disas

2025-06-27 Thread Yodel Eldar
Currently, execlog searches for a space separator between the instruction mnemonic and operands, but some disassemblers, e.g. Alpha's, use a tab separator instead; this results in a null pointer being passed as the haystack in g_strstr during a subsequent register search, i.e. undefined behavior, b