[Lldb-commits] [lldb] r198731 - Alignment fix
Enrico Granata
egranata at apple.com
Tue Jan 7 19:14:18 PST 2014
Author: enrico
Date: Tue Jan 7 21:14:18 2014
New Revision: 198731
URL: http://llvm.org/viewvc/llvm-project?rev=198731&view=rev
Log:
Alignment fix
Modified:
lldb/trunk/test/crashinfo.c
Modified: lldb/trunk/test/crashinfo.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/crashinfo.c?rev=198731&r1=198730&r2=198731&view=diff
==============================================================================
--- lldb/trunk/test/crashinfo.c (original)
+++ lldb/trunk/test/crashinfo.c Tue Jan 7 21:14:18 2014
@@ -35,7 +35,7 @@ static PyObject* setCrashReporterDescrip
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;
More information about the lldb-commits
mailing list