Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
9.4.0 [UNRELEASED -- THIS PR]

1. DevicePipeBlob as command in/out argument

9.3.2 [UNRELEASED]
==================
1. Add Tango::string_free and fix memory leak in zmq_event_subscription_change() (#457,#460)
Expand Down
5 changes: 3 additions & 2 deletions cpp_test_suite/cpp_test_ds/DevTestClass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ void DevTestClass::command_factory()
Tango::DEV_ENCODED,
"void",
"DevEncoded structure to test polling/history"));
command_list.push_back(new IOPipeBlob());
command_list.push_back(new PollingPoolTst("PollingPoolTst",
Tango::DEV_VOID,
Tango::DEVVAR_STRINGARRAY,
Expand Down Expand Up @@ -671,8 +672,8 @@ void DevTestClass::device_factory(const Tango::DevVarStringArray *devlist_ptr) {
// Create device and add it into the device list
//

device_list.push_back(new DevTest(this,
(*devlist_ptr)[i]));
string dev_name((*devlist_ptr)[i]);
device_list.push_back(new DevTest(this, dev_name));

//
// Export device to the outside world
Expand Down
Loading