]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/other/rscript/rscript.cpp
More fixes after cppcheck.
[stg.git] / projects / stargazer / plugins / other / rscript / rscript.cpp
index 725bc3f1a6b0f11c8def0f3d07cfd5268825bb83..e781a8cb91532f3d976a5f9d5fdc478ff7586616 100644 (file)
@@ -431,7 +431,10 @@ for(it = rsSettings.GetUserParams().begin();
     {
     std::string parameter(rsu.user->GetParamValue(it->c_str()));
     if (params.length() + parameter.length() > RS_PARAMS_LEN - 1)
+    {
+        logger("Script params string length %d exceeds the limit of %d symbols.", params.length() + parameter.length(), RS_PARAMS_LEN);
         break;
+    }
     params += parameter + " ";
     }
 strncpy((char *)packetTail.params, params.c_str(), RS_PARAMS_LEN);