Having a copy of m_httpVersion and m_uri instead of a pointer reference

This commit is contained in:
Felipe Zimmerle
2017-03-16 09:46:21 -03:00
parent 5b52190f97
commit 1f70e3f7e4
2 changed files with 4 additions and 4 deletions

View File

@@ -351,7 +351,7 @@ class Transaction : public TransactionAnchoredVariables {
/**
* Holds the HTTP version: 1.2, 2.0, 3.0 and so on....
*/
const char *m_httpVersion;
std::string m_httpVersion;
/**
* Holds the server IP Address
@@ -361,7 +361,7 @@ class Transaction : public TransactionAnchoredVariables {
/**
* Holds the raw URI that was requested.
*/
const char *m_uri;
std::string m_uri;
/**
* Holds the URI that was requests (without the query string).