c
// Add this check after line 151
if (lh.line_range == 0) {
    fprintf(stderr, "Error: Invalid line_range value\n");
    return NULL; // Or appropriate error handling
}

// Then the original line 257 can remain unchanged
address += ((op_index + adj_opcode / lh.line_range)
            * lh.minimum_instruction_length);
