aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NK_C_API.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/NK_C_API.cc b/NK_C_API.cc
index 59247ba..66bbcf9 100644
--- a/NK_C_API.cc
+++ b/NK_C_API.cc
@@ -616,8 +616,8 @@ extern "C" {
for (const auto a : v){
res += a+";";
}
- if (res.size()>0) res.pop_back(); // remove last delimeter char
- return strndup(res.c_str(), 4096);
+ if (res.size()>0) res.pop_back(); // remove last delimiter char
+ return strndup(res.c_str(), 8192); //this buffer size sets limit to over 200 devices ID's
});
}