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

Error Handling with C++ Exceptions, Part 2


December 1997/Error Handling with C++ Exceptions, Part 2/Listing 6

Listing 6: Reveals memory leak problems when using the new operator with exceptions

// destroy8.cpp
#include <stdio.h>
    
class File
{
    FILE* f;

public:
    File(const char* fname, const char* mode)
    {
        f = fopen(fname, mode);
        if (!f)
            throw 1;
    }
    ~File()
    {
        if (f)
        {
            fclose(f);
            puts("File closed");
        }
    }
};

main()
{
    void f(const char*);
    try
    {
        f("file1.dat");
    }
    catch(int x)
    {
        printf("Caught exception: %d\n",x);
    }
}

void f(const char* fname)
{
    File* xp = new File(fname,"r");
    puts("Processing file...");
    throw 2;
    delete xp;      // Won't happen
}

// Output:
Processing file...
Caught exception: 2
//End of File

Related Reading


More Insights