22 lines
626 B
Diff
22 lines
626 B
Diff
diff -Naur bacula-9.4.0.old/src/lib/message.c bacula-9.4.0/src/lib/message.c
|
|
--- bacula-9.4.0.old/src/lib/message.c 2018-12-16 11:30:25.000000000 +0100
|
|
+++ bacula-9.4.0/src/lib/message.c 2019-01-12 15:20:25.794653213 +0100
|
|
@@ -28,6 +28,7 @@
|
|
*
|
|
*/
|
|
|
|
+#include <assert.h>
|
|
#include "bacula.h"
|
|
#include "jcr.h"
|
|
|
|
@@ -1413,7 +1414,8 @@
|
|
|
|
if (type == M_ABORT) {
|
|
char *p = 0;
|
|
- p[0] = 0; /* generate segmentation violation */
|
|
+ // p[0] = 0; /* generate segmentation violation */
|
|
+ assert(p!=NULL);
|
|
}
|
|
if (type == M_ERROR_TERM) {
|
|
exit(1);
|