diff --git a/desktop/textbox.cpp b/desktop/textbox.cpp index 283a6eb..5b28edd 100644 --- a/desktop/textbox.cpp +++ b/desktop/textbox.cpp @@ -828,6 +828,10 @@ void TextboxUndoItemCallback(const void *item, EsUndoManager *manager, EsMessage void EsTextboxInsert(EsTextbox *textbox, const char *string, ptrdiff_t stringBytes, bool sendUpdatedMessage) { EsMessageMutexCheck(); + if (string >= textbox->activeLine && string < textbox->activeLine + textbox->activeLineAllocated) { + EsAssert(false); + } + // EsPerformanceTimerPush(); // double measureLineTime = 0; @@ -1739,7 +1743,13 @@ int ProcessTextboxMessage(EsElement *element, EsMessage *message) { } } - EsTextboxInsert(textbox, buffer, i); + char *copy = (char *) EsHeapAllocate(i, false); + + if (copy) { + EsMemoryCopy(copy, buffer, i); + EsTextboxInsert(textbox, copy, i); + EsHeapFree(copy); + } } } else { response = 0; diff --git a/kernel/objects.cpp b/kernel/objects.cpp index 08344fe..d9c47d4 100644 --- a/kernel/objects.cpp +++ b/kernel/objects.cpp @@ -722,12 +722,6 @@ bool MessageQueue::SendMessage(_EsMessageWithObject *_message) { KEventSet(¬Empty, true); - // TODO Temporary. - static int largest = 0; - int size = messages.Length(); - if (size > largest) largest = size; - if (size > 40) KernelPanic("what\n"); - return true; }