maskit opened a new issue, #10342:
URL: https://github.com/apache/trafficserver/issues/10342
intercept.cc
```
203static TSCont
204InterceptContCreate(TSEventFunc hook, TSMutex mutexp, void *data)
205{
206 TSCont contp;
207
CID 1518596 (#1 of 1): Side effect in assertion (ASSERT_SIDE_EFFECT)
assignment_where_comparison_intended: Assignment contp =
tsapi::c::TSContCreate(hook, mutexp) has a side effect. This code will work
differently in a non-debug build.
Did you intend to use a comparison (==) instead?
208 TSReleaseAssert((contp = TSContCreate(hook, mutexp)));
209 TSContDataSet(contp, data);
210 return contp;
211}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]