Archived

This forum has been archived. Please start a new discussion on GitHub.

Patch #2 for Ice 3.4.1: Memory leak in IceSSL for C++ (Windows only)

mes
mes California
As reported here, there is a memory leak for each new SSL connection in C++ on Windows. The attached patch resolves this problem.

To apply the patch to an Ice 3.4.1 source distribution on Windows:

cd Ice-3.4.1
patch --binary -p0 < patch.txt

On Unix:

cd Ice-3.4.1
patch -p0 < patch.txt

Best regards,
Mark

Comments

  • mes wrote: »
    As reported here, there is a memory leak for each new SSL connection in C++ on Windows. The attached patch resolves this problem.

    To apply the patch to an Ice 3.4.1 source distribution on Windows:

    cd Ice-3.4.1
    patch --binary -p0 < patch.txt

    On Unix:

    cd Ice-3.4.1
    patch -p0 < patch.txt

    Best regards,
    Mark
    Thanks !1