traeak opened a new pull request #8162:
URL: https://github.com/apache/trafficserver/pull/8162
In the new CI there is a periodic crash while running the HostDBProcessor
regression test.
Running valgrind I see a complaints about
"Conditional jump or move depends on uninitialised value" during the
regression test run.
One run pointed out
hostname_offset being uninitialized in the following call for the
hostname_offset:
{code}
char *
HostDBInfo::perm_hostname() const
{
if (hostname_offset == 0) {
return nullptr;
}
return (char *)this + hostname_offset;
}
{code}
Setting initializer values for these data members in HostDBProcessor cleans
up the valgrind messages.
--
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]