@@ -174,7 +174,7 @@ String & String::copy(const char *cstr, unsigned int length)
174
174
return *this ;
175
175
}
176
176
len = length;
177
- strcpy (buffer, cstr);
177
+ memcpy (buffer, cstr, length + 1 );
178
178
return *this ;
179
179
}
180
180
@@ -185,7 +185,7 @@ String & String::copy(const __FlashStringHelper *pstr, unsigned int length)
185
185
return *this ;
186
186
}
187
187
len = length;
188
- strcpy_P (buffer, (PGM_P)pstr);
188
+ memcpy_P (buffer, (PGM_P)pstr, length + 1 );
189
189
return *this ;
190
190
}
191
191
@@ -194,7 +194,7 @@ void String::move(String &rhs)
194
194
{
195
195
if (buffer) {
196
196
if (rhs && capacity >= rhs.len ) {
197
- strcpy (buffer, rhs.buffer );
197
+ memcpy (buffer, rhs.buffer , rhs. len + 1 );
198
198
len = rhs.len ;
199
199
rhs.len = 0 ;
200
200
return ;
@@ -266,8 +266,9 @@ unsigned char String::concat(const char *cstr, unsigned int length)
266
266
if (!cstr) return 0 ;
267
267
if (length == 0 ) return 1 ;
268
268
if (!reserve (newlen)) return 0 ;
269
- strcpy (buffer + len, cstr);
269
+ memcpy (buffer + len, cstr, length );
270
270
len = newlen;
271
+ buffer[len] = 0 ;
271
272
return 1 ;
272
273
}
273
274
@@ -341,7 +342,7 @@ unsigned char String::concat(const __FlashStringHelper * str)
341
342
if (length == 0 ) return 1 ;
342
343
unsigned int newlen = len + length;
343
344
if (!reserve (newlen)) return 0 ;
344
- strcpy_P (buffer + len, (const char *) str);
345
+ memcpy_P (buffer + len, (const char *) str, length + 1 );
345
346
len = newlen;
346
347
return 1 ;
347
348
}
@@ -653,6 +654,7 @@ void String::replace(const String& find, const String& replace)
653
654
}
654
655
} else if (diff < 0 ) {
655
656
char *writeTo = buffer;
657
+ char *end = buffer + len;
656
658
while ((foundAt = strstr (readFrom, find.buffer )) != NULL ) {
657
659
unsigned int n = foundAt - readFrom;
658
660
memcpy (writeTo, readFrom, n);
@@ -662,7 +664,7 @@ void String::replace(const String& find, const String& replace)
662
664
readFrom = foundAt + find.len ;
663
665
len += diff;
664
666
}
665
- strcpy (writeTo, readFrom);
667
+ memcpy (writeTo, readFrom, end - readFrom + 1 );
666
668
} else {
667
669
unsigned int size = len; // compute size needed for result
668
670
while ((foundAt = strstr (readFrom, find.buffer )) != NULL ) {
0 commit comments