diff --git a/AK/StringImpl.cpp b/AK/StringImpl.cpp index eae881764b7..4fac3401ca5 100644 --- a/AK/StringImpl.cpp +++ b/AK/StringImpl.cpp @@ -103,9 +103,6 @@ RefPtr StringImpl::create(const char* cstring, size_t length, Should if (!cstring) return nullptr; - if (!length || !*cstring) - return the_empty_stringimpl(); - if (should_chomp) { while (length) { char last_ch = cstring[length - 1];