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
File TopicImpl.cpp function partitioner_cb_trampoline , line
std::string key(static_cast<const char *>(keydata), keylen);
Creating std::string with length 0 is this way is illegal.
Take a look at C++ standars (2003)
Table 40
data() points at the first element of an
allocated copy of the array whose
first element is pointed at by s
size() n
You cannot have array of size 0
The text was updated successfully, but these errors were encountered:
File TopicImpl.cpp function partitioner_cb_trampoline , line
std::string key(static_cast<const char *>(keydata), keylen);
Creating std::string with length 0 is this way is illegal.
Take a look at C++ standars (2003)
Table 40
data() points at the first element of an
allocated copy of the array whose
first element is pointed at by s
size() n
You cannot have array of size 0
The text was updated successfully, but these errors were encountered: