From: Naffanya <naffanya@naffanya.(none)>
Date: Wed, 19 Mar 2014 23:12:09 +0000 (+0200)
Subject: Add send message to log about excess length of params
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/cdfd5986f699e9333962db96a8b24d5b7ee6c748?ds=inline;hp=69aaa0bd928ece0837c8e88441c80f1f8cf1fe38

Add send message to log about excess length of params
---

diff --git a/projects/stargazer/plugins/other/rscript/rscript.cpp b/projects/stargazer/plugins/other/rscript/rscript.cpp
index 17b86c67..4e454b5e 100644
--- a/projects/stargazer/plugins/other/rscript/rscript.cpp
+++ b/projects/stargazer/plugins/other/rscript/rscript.cpp
@@ -430,12 +430,15 @@ for(it = rsSettings.GetUserParams().begin();
     ++it)
     {
     std::string parameter;
-    if (*it == "tariffName") 
+    if (*it == "tariffName")
         parameter = rsu.user->GetParamValue("tariff");
-    else 
+    else
         parameter = rsu.user->GetParamValue(*it);
     if (params.length() + parameter.length() > RS_PARAMS_LEN - 1)
+    {
+        logger("Script params string length %i exceeds the limit of %i symbols.", params.length() + parameter.length(), RS_PARAMS_LEN);
         break;
+    }
     params += parameter + " ";
     }
 strncpy((char *)packetTail.params, params.c_str(), RS_PARAMS_LEN);