Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix duplicate item detection issue #145

Merged
merged 1 commit into from
Nov 11, 2023
Merged

Fix duplicate item detection issue #145

merged 1 commit into from
Nov 11, 2023

Commits on Nov 8, 2023

  1. Fix duplicate item detection issue

    Remove the 'is_this_dup' from qtest.c's delete duplicate implementation.
    
    Previously, 'is_this_dup' was used to indicate if the current item in the old list was a duplicate of the previous item, while 'is_next_dup' indicated if the current item was a duplicate of the next item.
    
    This led to comparisons always skipping when (is_next_dup || is_this_dup) was true, resulting in the item with duplicates not being compared with items in the new list.
    
    The 'is_next_dup' is retained for accurate comparison.
    ericlinsechs committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    40f20ff View commit details
    Browse the repository at this point in the history