patch 7.4.1471
Problem:    Missing out-of-memory check.  And Coverity warning.
Solution:   Bail out when msg is NULL.
diff --git a/src/channel.c b/src/channel.c
index 824da8a..f9cfa85 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -1516,6 +1516,9 @@
 	     * get everything we have. */
 	    msg = channel_get_all(channel, part);
 
+	if (msg == NULL)
+	    return FALSE; /* out of memory (and avoids Coverity warning) */
+
 	argv[1].v_type = VAR_STRING;
 	argv[1].vval.v_string = msg;
     }