Fixed string argument for soe_write.

This commit is contained in:
Florian Pose 2010-03-09 16:23:30 +01:00
parent 15bc20fb11
commit eaf749e9b4
1 changed files with 2 additions and 2 deletions

View File

@ -120,14 +120,14 @@ void CommandSoeWrite::execute(const StringVector &args)
memSize = dataType->byteSize;
} else {
// guess string type size
memSize = args[1].size();
memSize = args[1].size() + 1;
if (!memSize) {
err << "Empty argument not allowed.";
throwInvalidUsageException(err);
}
}
ioctl.data = new uint8_t[memSize + 1];
ioctl.data = new uint8_t[memSize];
try {
ioctl.data_size = interpretAsType(