We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88a5355 commit 880c466Copy full SHA for 880c466
CefSharp.Core.Runtime/Internals/CefStringVisitorAdapter.h
@@ -30,7 +30,7 @@ namespace CefSharp
30
31
virtual void Visit(const CefString& string) override
32
{
33
- _visitor->Visit(StringUtils::ToClr(string));
+ _visitor->Visit(string.empty() ? String::Empty : StringUtils::ToClr(string));
34
}
35
36
IMPLEMENT_REFCOUNTINGM(CefStringVisitorAdapter);
0 commit comments