diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-10-04 13:15:46 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2007-10-04 13:31:44 +0100 |
commit | bed8239f03773ad1584c8ba48ceb0b34bbe69453 (patch) | |
tree | fb97a0cd4874f4fd4a2b22d6ec882a77f04202da /src/cairo-lzw.c | |
parent | d90d4bb6b99e0a912650234e28d097ea76c1cecc (diff) |
[cairo-error] Clean up all the warnings and missing _cairo_error() calls.
Every time we assign or return a hard-coded error status wrap that value
with a call to _cairo_error(). So the idiom becomes:
status = _cairo_error (CAIRO_STATUS_NO_MEMORY);
or
return _cairo_error (CAIRO_STATUS_INVALID_DASH);
This ensures that a breakpoint placed on _cairo_error() will trigger
immediately cairo detects the error.
Diffstat (limited to 'src/cairo-lzw.c')
-rw-r--r-- | src/cairo-lzw.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cairo-lzw.c b/src/cairo-lzw.c index 73d82a3e..6158eaf4 100644 --- a/src/cairo-lzw.c +++ b/src/cairo-lzw.c @@ -75,8 +75,7 @@ _lzw_buf_init (lzw_buf_t *buf, int size) buf->data = malloc (size); if (buf->data == NULL) { buf->data_size = 0; - buf->status = CAIRO_STATUS_NO_MEMORY; - _cairo_error (CAIRO_STATUS_NO_MEMORY); + buf->status = _cairo_error (CAIRO_STATUS_NO_MEMORY); return; } } @@ -102,8 +101,7 @@ _lzw_buf_grow (lzw_buf_t *buf) if (new_data == NULL) { free (buf->data); buf->data_size = 0; - buf->status = CAIRO_STATUS_NO_MEMORY; - _cairo_error (CAIRO_STATUS_NO_MEMORY); + buf->status = _cairo_error (CAIRO_STATUS_NO_MEMORY); return buf->status; } |