maskit opened a new issue, #10429:
URL: https://github.com/apache/trafficserver/issues/10429

   ```
   1161  TSHttpStatus status = TS_HTTP_STATUS_NONE;
   1162
        1. var_decl: Declaring variable req_url.
   1163  UrlComponents req_url{rri, txnp};
   1164
        2. Condition ops == NULL, taking false branch.
   1165  if (ops == (OpsQueue *)nullptr) {
   1166    TSError("serious error with encountered while attempting to "
   1167            "cookie_remap");
   1168    TSDebug(MY_NAME, "serious error with encountered while attempting to 
remap");
   1169    return TSREMAP_NO_REMAP;
   1170  }
   1171
   1172  // get any query params..we will append that to the answer (possibly)
   1173  std::string client_req_query_params;
        
   CID 1508871 (#2 of 2): Uninitialized scalar variable (UNINIT)
   3. uninit_use_in_call: Using uninitialized value req_url._d[0].urlh. Field 
req_url._d[0].urlh.urlp is uninitialized when calling query. [[show 
details](https://scan6.scan.coverity.com/eventId=34751297-3&modelId=34751297-0&fileInstanceId=164786227&filePath=%2Fplugins%2Fexperimental%2Fcookie_remap%2Fcookie_remap.cc&fileStart=69&fileEnd=75)]
   1174  auto query = req_url.query(false);
   1175  if (!query.empty()) {
   1176    client_req_query_params  = "?";
   1177    client_req_query_params += query;
   1178  }
   ```


-- 
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]

Reply via email to