We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue created by migration from Trac.
Original creator: walter
Original creation time: 2011-12-29 12:35:19
Version:
In OSnl2osil's constructor has the following:
stub = &nlfilename[ 0]; nl = jac0dim(stub, (fint)strlen(stub));
Where nlfilename is passed by value and so it will be destroyed on exit from the c'tor (leaving stub dangling.)
One solution is to remove the unused member and simplify the c'tor to:
nl = jac0dim(nlfilename.c_str(), (fint)nlfilename.length());
The text was updated successfully, but these errors were encountered:
Comment by JunMa created at 2015-03-13 17:56:34
Sorry for the late reply. Do you still encounter the same issue?
Sorry, something went wrong.
No branches or pull requests
Issue created by migration from Trac.
Original creator: walter
Original creation time: 2011-12-29 12:35:19
Version:
In OSnl2osil's constructor has the following:
Where nlfilename is passed by value and so it will be destroyed on exit from the c'tor (leaving stub dangling.)
One solution is to remove the unused member and simplify the c'tor to:
The text was updated successfully, but these errors were encountered: