maskit opened a new issue, #10210:
URL: https://github.com/apache/trafficserver/issues/10210
```
1191 const char *cookie = nullptr;
1192 int cookie_len = 0;
5. Condition field != NULL, taking false branch.
1193 if (field != nullptr) {
1194 cookie = TSMimeHdrFieldValueStringGet(rri->requestBufp,
rri->requestHdrp, field, -1, &cookie_len);
1195 }
1196 std::string temp_cookie(cookie, cookie_len);
1197 CookieJar jar;
1198 jar.create(temp_cookie);
1199
6. Iterating over another element of ops.
9. Iterating over another element of ops.
1200 for (auto &op : *ops) {
1201 TSDebug(MY_NAME, ">>> processing new operation");
7. Condition op->process(jar, rewrite_to, status, rri, req_url), taking
false branch.
CID 1508871 (#2 of 2): Uninitialized scalar variable (UNINIT)
10. uninit_use_in_call: Using uninitialized value req_url._d[0].urlh. Field
req_url._d[0].urlh.urlp is uninitialized when calling process. [[show
details](https://scan6.scan.coverity.com/eventId=34743382-14&modelId=34743382-0&fileInstanceId=162996765&filePath=%2Fplugins%2Fexperimental%2Fcookie_remap%2Fcookie_remap.cc&fileStart=538&fileEnd=804)]
1202 if (op->process(jar, rewrite_to, status, rri, req_url)) {
1203 cr_substitutions(rewrite_to, req_url);
```
--
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]