diff options
-rw-r--r-- | src/textbuf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textbuf.cpp b/src/textbuf.cpp index 445ebe59d..766396fc6 100644 --- a/src/textbuf.cpp +++ b/src/textbuf.cpp @@ -162,7 +162,7 @@ bool Textbuf::InsertString(const char *str, bool marked, const char *caret, cons uint16 insertpos = (marked && this->marklength != 0) ? this->markpos : this->caretpos; if (insert_location != NULL) { insertpos = insert_location - this->buf; - if (insertpos > this->bytes) return NULL; + if (insertpos > this->bytes) return false; if (replacement_end != NULL) { this->DeleteText(insertpos, replacement_end - this->buf, str == NULL); |