mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Makes m_uri_no_query_string_decoded a shared pointer
This commit is contained in:
@@ -110,7 +110,7 @@ class RuleMessage {
|
||||
bool m_saveMessage;
|
||||
std::shared_ptr<std::string> m_serverIpAddress;
|
||||
int m_severity;
|
||||
std::string m_uriNoQueryStringDecoded;
|
||||
std::shared_ptr<std::string> m_uriNoQueryStringDecoded;
|
||||
std::string m_ver;
|
||||
|
||||
std::list<std::string> m_tags;
|
||||
|
@@ -410,7 +410,7 @@ class Transaction : public TransactionAnchoredVariables {
|
||||
/**
|
||||
* Holds the URI that was requests (without the query string).
|
||||
*/
|
||||
std::string m_uri_no_query_string_decoded;
|
||||
std::shared_ptr<std::string> m_uri_no_query_string_decoded;
|
||||
|
||||
/**
|
||||
* Holds the combined size of all arguments, later used to fill the
|
||||
|
Reference in New Issue
Block a user