Changeset 439


Ignore:
Timestamp:
Aug 24, 2006, 6:45:27 AM (19 years ago)
Author:
root
Message:

Use Runtime_Error more

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/autoview.c

    r377 r439  
    1515  29 May 06 SHL Sync with archiver.bb2 mods
    1616  22 Jul 06 SHL Check more run time errors
     17  15 Aug 06 SHL Use Runtime_Error more
    1718
    1819***********************************************************************/
     
    216217}
    217218
     219static PSZ pszBufOvfMsg = "Buffer overflow";
    218220
    219221ULONG CreateHexDump (CHAR *pchInBuf,ULONG cbInBuf,
     
    232234    while (ibIn < cbInBuf) {
    233235      if (pchOut - pchOutBuf + cbOutLine >= cbOutBuf) {
    234         saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"hex buf ovf");
     236        Runtime_Error(pszSrcFile, __LINE__, pszBufOvfMsg);
    235237        break;
    236238      }
     
    403405                        *dest = 0;
    404406                        if (dest - obuff >= obufflen)
    405                           saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"obuff ovf");
     407                          Runtime_Error(pszSrcFile, __LINE__, pszBufOvfMsg);
    406408                      }
    407409                      if(*obuff)
     
    503505                  } // while
    504506                  if (p - buff >= bufflen)
    505                     saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"buff ovf");
     507                    Runtime_Error(pszSrcFile, __LINE__, pszBufOvfMsg);
    506508                  if(*buff)
    507509                    WinSetWindowText(hwndAutoview,buff);
     
    586588                        } // while
    587589                        if (p - buff >= 65536) {
    588                           saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"eabuff ovf");
     590                          Runtime_Error(pszSrcFile, __LINE__, pszBufOvfMsg);
    589591                          buff[65535] = 0;      // Try to stay alive
    590592                          break;
     
    687689          if (_beginthread(MakeAutoWin,NULL,65536,(PVOID)hwnd) == -1) {
    688690            Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT));
    689             PostMsg(hwnd,
    690                     UM_CLOSE,
    691                     MPVOID,
    692                     MPVOID);
     691            PostMsg(hwnd,UM_CLOSE,MPVOID,MPVOID);
    693692          }
    694693        }
  • TabularUnified trunk/dll/avl.c

    r418 r439  
    2323  14 Jul 06 SHL Use Runtime_Error
    2424  29 Jul 06 SHL Use xfgets, xfgets_bstripcr
     25  15 Aug 06 SHL Use Runtime_Error more
    2526
    2627***********************************************************************/
     
    728729//=== SBoxDlgProc() Select archiver to use or edit, supports list reorder too ===
    729730
     731static PSZ pszCantFindMsg = "Can't find item %d";
     732
    730733MRESULT EXPENTRY SBoxDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    731734{
     
    882885            if (!pat) {
    883886              if (arcsighead)
    884                 saymsg(0,NULLHANDLE,"*Debug*","Can not find self at %d at %s::%u", sSelect, pszSrcFile, __LINE__);
     887                Runtime_Error(pszSrcFile, __LINE__, pszCantFindMsg, sSelect);
    885888              else
    886889                arcsighead = ad.info;
     
    921924          ; // Find self
    922925
    923         if (!pat) {
    924           saymsg(0,NULLHANDLE,"*Debug*","Can not find self at %d at %s::%u",sSelect, pszSrcFile, __LINE__);
    925         }
     926        if (!pat)
     927          Runtime_Error(pszSrcFile, __LINE__, pszCantFindMsg, sSelect);
    926928        else {
    927929          // Delete current
     
    962964        for (i = 0, pat = arcsighead; pat && i < sSelect; pat = pat->next, i++)
    963965          ; // Find self
    964         if (!pat || !pat->prev) {
    965           saymsg(0,NULLHANDLE,"*Debug*","Can not find self at %d at %s::%u",sSelect, pszSrcFile, __LINE__);
    966         }
     966        if (!pat || !pat->prev)
     967          Runtime_Error(pszSrcFile, __LINE__, pszCantFindMsg, sSelect);
    967968        else {
    968969          ARC_TYPE *patGDad;
     
    10091010        for (i = 0, pat = arcsighead; pat && i < sSelect; pat = pat->next, i++)
    10101011          ; // Find self
    1011         if (!pat || !pat->next) {
    1012           saymsg(0,NULLHANDLE,"*Debug*","Can not find self at %d/%d at %s::%u",sSelect, sItemCount, pszSrcFile, __LINE__);
    1013         }
     1012        if (!pat || !pat->next)
     1013          Runtime_Error(pszSrcFile, __LINE__, "Can't find item %d of %d", sSelect, sItemCount);
    10141014        else {
    10151015          ARC_TYPE *patDad;
Note: See TracChangeset for help on using the changeset viewer.