Changeset 1917


Ignore:
Timestamp:
Nov 5, 2025, 10:16:27 PM (9 hours ago)
Author:
Gregg Young
Message:

Partially fixed Ticket #536. (Reduced the error noise)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/avv.c

    r1751 r1917  
    134134    if (pszWorkBuf) {
    135135      NormalizeCmdLine(pszWorkBuf, szCmdLine);
    136       pszDest = xstrdup(pszWorkBuf, pszSrcFile, __LINE__);
    137       free(pszWorkBuf);
     136      if (fCancelAction) {
     137        fCancelAction = FALSE;
     138        free(pszWorkBuf);
     139        free(szCmdLine);
     140        return NULL;
     141      }
     142      else {
     143        pszDest = xstrdup(pszWorkBuf, pszSrcFile, __LINE__);
     144        free(pszWorkBuf);
     145      }
    138146    }
    139147    else
Note: See TracChangeset for help on using the changeset viewer.