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 19d69a6 commit 6f885baCopy full SHA for 6f885ba
src/cpp/subscriber/UserDataReaderListener.cpp
@@ -56,6 +56,7 @@ void UserDataReaderListener::on_data_available(
56
// Type is required to deserialize the data
57
if (!type)
58
{
59
+ EPROSIMA_LOG_WARNING(USER_DATA_READER_LISTENER, "Unable to process user data. Topic type is unknown.");
60
return;
61
}
62
@@ -74,6 +75,8 @@ void UserDataReaderListener::on_data_available(
74
75
76
77
78
+
79
+ DynamicDataFactory::get_instance()->delete_data(data);
80
81
82
std::string UserDataReaderListener::serialize_user_data(
0 commit comments