From 693fd5b56e51de2910a5681533033b9530650270 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 16 Dec 2009 18:39:06 +0000 Subject: Check the return value of all pipe(), read(), and write() calls. Gets rid of all the remaining "ignoring return value" compiler warnings, and makes some read/write operations safer by ensuring that an EINTR is handled. --- Src/Zle/zle_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/Zle/zle_main.c') diff --git a/Src/Zle/zle_main.c b/Src/Zle/zle_main.c index ef14342bc..16f98186f 100644 --- a/Src/Zle/zle_main.c +++ b/Src/Zle/zle_main.c @@ -1125,7 +1125,7 @@ zleread(char **lp, char **rp, int flags, int context) pptbuf = unmetafy(promptexpand(lp ? *lp : NULL, 0, NULL, NULL, &pmpt_attr), &pptlen); - write(2, (WRITE_ARG_2_T)pptbuf, pptlen); + write_loop(2, (WRITE_ARG_2_T)pptbuf, pptlen); free(pptbuf); return shingetline(); } -- cgit 1.4.1