Closed GoogleCodeExporter closed 9 years ago
my suggested fix is one line: change strcpy, that MSVS is complaining about,
to memcpy.
old:
strcpy(clone, c_string);
new:
memcpy(clone, c_string, len + 1);
patch file is attached.
Original comment by keith....@gmail.com
on 6 Oct 2008 at 6:43
Attachments:
Original comment by shiq...@gmail.com
on 8 Oct 2008 at 9:10
Keith,
I am putting the change in, together with another sample fix (that one for VS
7.1).
They may take a week or two to filter to svn, though -- we are busy with the
other
things right now.
Original comment by vladlosev
on 9 Oct 2008 at 1:02
Original comment by shiq...@gmail.com
on 12 Oct 2008 at 3:21
Fixed in revision 135.
Original comment by vladlosev
on 22 Nov 2008 at 6:08
Original issue reported on code.google.com by
keith....@gmail.com
on 6 Oct 2008 at 6:22Attachments: