You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lines 288 and 291 dereference work if PRINTING is defined. Just a few lines later on line 302 the code checks to see if work is NULL. This either suggests work cannot be NULL or there is a null pointer deference. Since work is passed by the caller, this appears to be a possible null pointer dereference.
Lines 288 and 291 dereference
work
ifPRINTING
is defined. Just a few lines later on line 302 the code checks to see ifwork
isNULL
. This either suggestswork
cannot beNULL
or there is a null pointer deference. Sincework
is passed by the caller, this appears to be a possible null pointer dereference.https://github.com/oxfordcontrol/osqp/blob/88277e9f0a2c7079002bb12356bd5e5363b42042/src/osqp.c#L288
https://github.com/oxfordcontrol/osqp/blob/88277e9f0a2c7079002bb12356bd5e5363b42042/src/osqp.c#L291
https://github.com/oxfordcontrol/osqp/blob/88277e9f0a2c7079002bb12356bd5e5363b42042/src/osqp.c#L302
The text was updated successfully, but these errors were encountered: