diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-09-29 17:54:03 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-09-29 19:03:10 -0400 |
commit | 9666ad922524b617947590aed4c6fde5febab53a (patch) | |
tree | b51c459670fac0f1d36b70e055f31ce1d641c4ef /libdimension/png.c | |
parent | cec47afae217cea36779d7dea4437b35dee63be2 (diff) | |
download | dimension-9666ad922524b617947590aed4c6fde5febab53a.tar.xz |
Make dmnsn_new_thread() bail out on errors.
Diffstat (limited to 'libdimension/png.c')
-rw-r--r-- | libdimension/png.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/libdimension/png.c b/libdimension/png.c index 189c998..ed98210 100644 --- a/libdimension/png.c +++ b/libdimension/png.c @@ -140,11 +140,7 @@ dmnsn_png_write_canvas_async(const dmnsn_canvas *canvas, FILE *file) payload->file = file; /* Create the worker thread */ - if (dmnsn_new_thread(progress, NULL, &dmnsn_png_write_canvas_thread, payload) - != 0) - { - dmnsn_error(DMNSN_SEVERITY_HIGH, "Couldn't start worker thread."); - } + dmnsn_new_thread(progress, NULL, &dmnsn_png_write_canvas_thread, payload); return progress; } @@ -172,11 +168,7 @@ dmnsn_png_read_canvas_async(dmnsn_canvas **canvas, FILE *file) payload->file = file; /* Create the worker thread */ - if (dmnsn_new_thread(progress, NULL, &dmnsn_png_read_canvas_thread, payload) - != 0) - { - dmnsn_error(DMNSN_SEVERITY_HIGH, "Couldn't start worker thread."); - } + dmnsn_new_thread(progress, NULL, &dmnsn_png_read_canvas_thread, payload); return progress; } |