aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 84c3de65..545288fc 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -1111,12 +1111,6 @@ static void escape_string_internal(const wchar_t *orig_in, size_t in_len, wcstri
wcstring escape(const wchar_t *in, escape_flags_t flags)
{
- if (!in)
- {
- debug(0, L"%s called with null input", __func__);
- FATAL_EXIT();
- }
-
wcstring result;
escape_string_internal(in, wcslen(in), &result, flags);
return result;