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
a blob_t is constructed just to use it as an argument for outpipes.find. Since blob_t is std::basic_string, it will allocate memory. blob_t should be redefined to a type which allows referencing existing memory instead.
Severals similar uses exist in router_t and in some other classes.
The text was updated successfully, but these errors were encountered:
E.g. at
libzmq/src/router.cpp
Line 211 in cfef040
a blob_t is constructed just to use it as an argument for outpipes.find. Since blob_t is std::basic_string, it will allocate memory. blob_t should be redefined to a type which allows referencing existing memory instead.
Severals similar uses exist in router_t and in some other classes.
The text was updated successfully, but these errors were encountered: