git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Sqlite: fix segfault on bad/missing sqlite_dbfile. Bug 2606
[exim.git]
/
src
/
exim_monitor
/
em_init.c
diff --git
a/src/exim_monitor/em_init.c
b/src/exim_monitor/em_init.c
index 39ce05c204f3934d7fdf5050df17eacb89c358b9..56cb298860ce7b9e95fc1c0546bdfa9569b41563 100644
(file)
--- a/
src/exim_monitor/em_init.c
+++ b/
src/exim_monitor/em_init.c
@@
-1,10
+1,9
@@
-/* $Cambridge: exim/src/exim_monitor/em_init.c,v 1.3 2006/02/07 11:18:59 ph10 Exp $ */
-
/*************************************************
* Exim monitor *
*************************************************/
/*************************************************
* Exim monitor *
*************************************************/
-/* Copyright (c) University of Cambridge 1995 - 2006 */
+/* Copyright (c) University of Cambridge 1995 - 2009 */
+/* Copyright (c) The Exim Maintainers 2020 */
/* See the file NOTICE for conditions of use and distribution. */
/* This module contains code to initialize things from the
/* See the file NOTICE for conditions of use and distribution. */
/* This module contains code to initialize things from the
@@
-72,9
+71,8
@@
for (i = 0; i <= 1; i++)
{
int offset;
const uschar *error;
{
int offset;
const uschar *error;
- stripchart_regex[indx] = pcre_compile(CS buffer, PCRE_COPT,
- (const char **)&error, &offset, NULL);
- if (stripchart_regex[indx] == NULL)
+ if (!(stripchart_regex[indx] = pcre_compile(CS buffer, PCRE_COPT,
+ CCSS &error, &offset, NULL)))
{
printf("regular expression error: %s at offset %d "
"while compiling %s\n", error, offset, buffer);
{
printf("regular expression error: %s at offset %d "
"while compiling %s\n", error, offset, buffer);
@@
-233,7
+231,7
@@
queue_stripchart_name = (s != NULL)? string_copy(s) : US"queue";
/* Compile the regex for matching yyyy-mm-dd at the start of a string. */
yyyymmdd_regex = pcre_compile("^\\d{4}-\\d\\d-\\d\\d\\s", PCRE_COPT,
/* Compile the regex for matching yyyy-mm-dd at the start of a string. */
yyyymmdd_regex = pcre_compile("^\\d{4}-\\d\\d-\\d\\d\\s", PCRE_COPT,
-
(const char **)
&error, &erroroffset, NULL);
+
CCSS
&error, &erroroffset, NULL);
}
/* End of em_init.c */
}
/* End of em_init.c */