Fix CVE-2016-1531
[exim.git] / src / src / string.c
index 0f657dccaebb16499a5e40f57ce656fb2977a1b7..4b1bcc265d6f2f05d8dc123aa78f6894890fad9e 100644 (file)
@@ -1635,6 +1635,17 @@ return yield;
 #endif  /* COMPILE_UTILITY */
 
 
+#ifndef COMPILE_UTILITY
+/* qsort(3), currently used to sort the environment variables
+for -bP environment output, needs a function to compare two pointers to string
+pointers. Here it is. */
+
+int
+string_compare_by_pointer(const uschar **a, const uschar **b)
+{
+return Ustrcmp(CUS *a, CUS *b);
+}
+#endif /* COMPILE_UTILITY */