Thank you. Will be updated in cvs shortly.

David

There is a bug in src/exec/dpexec/dxThreadMain.cpp in the
DXExecThread::SetupArgs(int argc, char **argv) function.

I beleive the line:
        largv[i] = new char[strlen(argv[i]+1)];
should instead be:
        largv[i] = new char[strlen(argv[i])+1];

This bug prevents proper freeing of the largv variables in the destructor.

Respectfully,
Michael


--
.............................................................................
David L. Thompson                   Visualization and Imagery Solutions, Inc.
mailto:[EMAIL PROTECTED]    5515 Skyway Drive, Missoula, MT 59804
                                    Phone : (406)756-7472

Reply via email to