I have this routine:
Code: Select all
void Message::buildSilenceAck()
{
string s;
s = m_params->nvs->getIpAddr(IP_ADDRESS);
}
Here's what's odd: when I change the assignment to this:
Code: Select all
s = "10.10.0.157"; //m_params->nvs->getIpAddr(IP_ADDRESS);
Is this some kind of heap allocation error in disguise?
Thanks...