Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Welcome Guest | Log In | Register | Benefits
Channels ▼
RSS

Catching Untested Return Codes


May 2000/Catching Untested Return Codes/Figure 1

Figure 1: Typical use (and abuse) of error codes

// ErrorCodes.h
enum ErrorCode 
{ Success, MyError1, MyError2, MyError3 };

// main.cpp
#include "ErrorCodes.h"

ErrorCode doSomeJob(int _i)
{
   if (_i == 0)
      return MyError1;
   else if (_i > 10)
      return MyError2;
  
   ... // some code

   return Success;
}

ErrorCode myFunc(void)
{
   doSomeJob(0); // <-- return value not used

   ErrorCode err = doSomeJob(5);
   err = doSomeJob(15); // <-- previous value 
                        // of err not tested
   if (err != Success)  // <-- return value
      return err;       // is tested
  
   ... // some code
  
   return Success;
}

int main(void)
{
   if (myFunc() == Success)
      return 0;
   else
      return 1;
}

Related Reading


More Insights