Changes between Initial Version and Version 1 of Ticket #554


Ignore:
Timestamp:
Jul 12, 2015, 8:17:35 PM (9 years ago)
Author:
Gregg Young
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #554 – Description

    initial v1  
    11After I "fixed" the direct edit code it would leave a blank directory line above or below the renamed directory. I added a rescan and the problem was covered up. This seemed fine until it trapped. I traced the trap to UM_RESCAN2 treecnr.c ~791
     2
     3{{{
    24if (pci && (INT) pci != -1 && pci->pszFileName != NullStr) { //fixme? will try checking pci->pszFileName instead of the pointer
    35          if (!(driveflags[toupper(*pci->pszFileName) - 'A'] &
    46                DRIVE_REMOVABLE) ||
    57              driveserial[toupper(*pci->pszFileName) - 'A'] != -1) {
     8}}}
    69
    710I added the != NullStr which fixed the trap. I can see we had problems with this in the past based on the fixme. Hopefully this fixed that problem also.