This commit is contained in:
Pepe Rivera
2020-01-14 13:52:57 -08:00
committed by GitHub
parent 027eab12a3
commit ca0b3d83e8
4 changed files with 34 additions and 4 deletions

View File

@@ -277,8 +277,15 @@ namespace GraphControl
{
request += L"<mo>,</mo>";
}
auto equationRequest = eq->GetRequest()->Data();
request += eq->GetRequest()->Data();
// If the equation request failed, then fail graphing.
if (equationRequest == nullptr)
{
return false;
}
request += equationRequest;
}
request += s_getGraphClosingTags;