X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/b3d4b1a28e293d8bb346de5ccda0a3fddda2a0b6..f67af8026d4968e9efc0bcc503b186c1c7fd7ef0:/stglibs/common.lib/include/stg/common.h?ds=inline

diff --git a/stglibs/common.lib/include/stg/common.h b/stglibs/common.lib/include/stg/common.h
index 1dd8c1c7..94c26a8b 100644
--- a/stglibs/common.lib/include/stg/common.h
+++ b/stglibs/common.lib/include/stg/common.h
@@ -107,7 +107,7 @@ while (pos != std::string::npos)
     {
     res.push_back(conv(value.substr(startPos, pos - startPos)));
     startPos = pos + 1;
-    pos = value.find_first_of(delim, pos);
+    pos = value.find_first_of(delim, pos + 1);
     }
 res.push_back(conv(value.substr(startPos, pos - startPos)));
 return res;