diff options
| -rw-r--r-- | lldb/test/crashinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/crashinfo.c b/lldb/test/crashinfo.c index 718cb006e92..19013468bb2 100644 --- a/lldb/test/crashinfo.c +++ b/lldb/test/crashinfo.c @@ -35,7 +35,7 @@ static PyObject* setCrashReporterDescription(PyObject* self, PyObject* string) char* data = PyString_AsString(string); if (size > 0 && data) { - ++size; // Include the NULL terminateor in allocation and memcpy() + ++size; // Include the NULL terminateor in allocation and memcpy() __crashreporter_info__ = malloc(size); memcpy(__crashreporter_info__, data, size); return Py_True; |

