[pcre-dev] [Bug 2088] pointer was utilized before it was ver…
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Este mensaje es parte del siguiente hilo:
El árbol completo de hilos, ordenados por fecha
admin, mensaje del
2017-03-28 17:53
admin, mensaje del
2017-03-29 06:54
Autor:
admin
Fecha:
2017-03-28 17:56
UTC
A:
pcre-dev
Asunto:
[pcre-dev] [Bug 2088] pointer was utilized before it was verified against nullptr: pcre2_pattern_info.c
https://bugs.exim.org/show_bug.cgi?id=2088
--- Comment #1 from egoroff <egoroff@???> ---
You should do something like this:
#ifdef SUPPORT_UNICODE
BOOL utf;
#endif
if (re == NULL) return PCRE2_ERROR_NULL;
#ifdef SUPPORT_UNICODE
utf = (re->overall_options & PCRE2_UTF) != 0;
#endif
--
You are receiving this mail because:
You are on the CC list for the bug.