100
edits
Changes
no edit summary
[[BTP300B Teams (Fall 2013)|<-- Go Back]]
== <u>'''Bugs/Problems'''</u> ==
<u>''' Week 4 - Sept 23 - 29 '''</u>
* Allocated memory for local copy of ''str'' in the '''edit()''' function. Memory allocated (by calling '''new''') was based on length of original string. After inserts into the local copy, memory was therefore corrupted and '''delete []''' was failing. The memory allocation was changed to be based on ''maxStrLength'' which is passed in to '''edit()'''. This fixed the problem.
== <u>'''Accomplishments'''</u> ==