svf-lib 1.0.1285 → 1.0.1286

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,7 +98,7 @@ public:
98
98
  ii != ie; ii++)
99
99
  {
100
100
  char int2str[16];
101
- sprintf(int2str, "%d", *ii);
101
+ snprintf(int2str, sizeof(int2str), "%d", *ii);
102
102
  str += int2str;
103
103
  str += " ";
104
104
  }
@@ -732,7 +732,7 @@ public:
732
732
  ii != ie; ii++)
733
733
  {
734
734
  char int2str[16];
735
- sprintf(int2str, "%d", *ii);
735
+ snprintf(int2str, sizeof(int2str), "%d", *ii);
736
736
  str += int2str;
737
737
  str += " ";
738
738
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1285",
3
+ "version": "1.0.1286",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {