You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have identified an error with referenced string in the following two methods. Here is the correction I propose (in zend/value.cpp) :
char *Value::buffer() const
{
// must be a string
if (!isString()) return nullptr;
Hello,
I have identified an error with referenced string in the following two methods. Here is the correction I propose (in zend/value.cpp) :
char *Value::buffer() const
{
// must be a string
if (!isString()) return nullptr;
}
const char *Value::rawValue() const
{
// must be a string
if (!isString()) return nullptr;
}
The text was updated successfully, but these errors were encountered: