Skip to content
New issue

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

Fixed Memory Leak #4504

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
2 changes: 2 additions & 0 deletions src/lib/jsonParseV2/parseNotification.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ static bool parseNotificationData

PradyumnAgrawal05 marked this conversation as resolved.
Show resolved Hide resolved
if (parseContextElementResponse(ciP, iter2, cerP, oeP) == false)
{
//delete the allocated memory and return false
delete cerP;
return false;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ payload='{
}'
# FIXME #4261. Once the issue gets solved, this line should be uncommented
# The REGEXPECT part would need a little adapation after that
PradyumnAgrawal05 marked this conversation as resolved.
Show resolved Hide resolved
#orionCurl --url /v2/op/notify -X POST --payload "$payload" > /dev/null
orionCurl --url /v2/op/notify -X POST --payload "$payload" > /dev/null


payload='{
Expand Down
Loading