Blame SOURCES/lvm2-2_02_169-fix-segfault-in-lvmetad-from-missing-null-in-daemon_reply_simple.patch

c24f80
 WHATS_NEW                      | 4 ++++
c24f80
 daemons/lvmetad/lvmetad-core.c | 9 ++++++---
c24f80
 2 files changed, 10 insertions(+), 3 deletions(-)
c24f80
c24f80
diff --git a/WHATS_NEW b/WHATS_NEW
c24f80
index 519bbc9..8ae2df8 100644
c24f80
--- a/WHATS_NEW
c24f80
+++ b/WHATS_NEW
c24f80
@@ -1,3 +1,7 @@
c24f80
+Version 2.02.169 - 
c24f80
+=====================================
c24f80
+  Fix segfault in lvmetad from missing NULL in daemon_reply_simple.
c24f80
+
c24f80
 Version 2.02.167 - 
c24f80
 ======================================
c24f80
   Prevent raid4 creation/conversion on non-supporting kernels
c24f80
diff --git a/daemons/lvmetad/lvmetad-core.c b/daemons/lvmetad/lvmetad-core.c
c24f80
index 36a5cec..c46c7ac 100644
c24f80
--- a/daemons/lvmetad/lvmetad-core.c
c24f80
+++ b/daemons/lvmetad/lvmetad-core.c
c24f80
@@ -2745,7 +2745,8 @@ static response handler(daemon_state s, client_handle h, request r)
c24f80
 							   "expected = %s", state->token,
c24f80
 							   "received = %s", token,
c24f80
 							   "update_pid = " FMTd64, (int64_t)state->update_pid,
c24f80
-							   "reason = %s", "another command has populated the cache");
c24f80
+							   "reason = %s", "another command has populated the cache",
c24f80
+							   NULL);
c24f80
 			}
c24f80
 
c24f80
 			DEBUGLOG(state, "token_update end len %d pid %d new token %s",
c24f80
@@ -2778,7 +2779,8 @@ static response handler(daemon_state s, client_handle h, request r)
c24f80
 					   "expected = %s", state->token,
c24f80
 					   "received = %s", token,
c24f80
 					   "update_pid = " FMTd64, (int64_t)state->update_pid,
c24f80
-					   "reason = %s", "another command has populated the cache");
c24f80
+					   "reason = %s", "another command has populated the cache",
c24f80
+					   NULL);
c24f80
 	}
c24f80
 
c24f80
 	/* If a pid doing update was cancelled, ignore its update messages. */
c24f80
@@ -2793,7 +2795,8 @@ static response handler(daemon_state s, client_handle h, request r)
c24f80
 					   "expected = %s", state->token,
c24f80
 					   "received = %s", token,
c24f80
 					   "update_pid = " FMTd64, (int64_t)state->update_pid,
c24f80
-					   "reason = %s", "another command has populated the lvmetad cache");
c24f80
+					   "reason = %s", "another command has populated the lvmetad cache",
c24f80
+					   NULL);
c24f80
 	}
c24f80
 
c24f80
 	pthread_mutex_unlock(&state->token_lock);