]> git.ozlabs.org Git - ccan/blobdiff - ccan/tal/str/test/run-fmt-terminate.c
tal/str: fix infinite loop of tal_fmt() with empty string.
[ccan] / ccan / tal / str / test / run-fmt-terminate.c
diff --git a/ccan/tal/str/test/run-fmt-terminate.c b/ccan/tal/str/test/run-fmt-terminate.c
new file mode 100644 (file)
index 0000000..9dfd001
--- /dev/null
@@ -0,0 +1,22 @@
+#include <ccan/tal/str/str.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <ccan/tal/str/str.c>
+#include <ccan/tap/tap.h>
+#include "helper.h"
+
+/* Empty format string: should still terminate! */
+int main(int argc, char *argv[])
+{
+       char *str;
+       const char *fmt = "";
+
+       plan_tests(1);
+       /* GCC complains about empty format string, complains about non-literal
+        * with no args... */
+       str = tal_fmt(NULL, fmt, "");
+       ok1(!strcmp(str, ""));
+       tal_free(str);
+
+       return exit_status();
+}