summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorobo <obo@openoffice.org>2010-06-22 15:46:16 +0200
committerobo <obo@openoffice.org>2010-06-22 15:46:16 +0200
commitf32a2e368c3bb2d6955a4943944bb65df3ae8657 (patch)
treebfc40d1c372227ba7c0ccdb15f0d22a502f1ed93 /idlc
parent3d4c4439aa344a61d3d448b188261545fcc28e65 (diff)
parentee1f20e21bef4ac163b0e191a00ebf42bca3c0f8 (diff)
CWS-TOOLING: integrate CWS cmcfixes75
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/preproc/tokens.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/idlc/source/preproc/tokens.c b/idlc/source/preproc/tokens.c
index 6df35ae1f238..23ab88a5a9e3 100644
--- a/idlc/source/preproc/tokens.c
+++ b/idlc/source/preproc/tokens.c
@@ -474,7 +474,8 @@ void
if (wbp >= &wbuf[OBS])
{
- write(1, wbuf, OBS);
+ if (write(1, wbuf, OBS) != OBS)
+ error(ERROR, "short write!");
if (wbp > &wbuf[OBS])
memcpy(wbuf, wbuf + OBS, wbp - &wbuf[OBS]);
wbp -= OBS;
@@ -490,7 +491,8 @@ void
{
if (wbp > wbuf)
{
- write(1, wbuf, wbp - wbuf);
+ if (write(1, wbuf, wbp - wbuf) != wbp - wbuf)
+ error(ERROR, "short write!");
wbp = wbuf;
}
}