diff options
author | Chris Rankin <rankincj@yahoo.com> | 2011-10-01 21:38:25 +0100 |
---|---|---|
committer | Chris Rankin <rankincj@yahoo.com> | 2011-10-01 21:38:25 +0100 |
commit | 81c4665ec233961b07544445b3e21b99fe11c734 (patch) | |
tree | 32fc75be384c9860f3140510204323a1329f3d5c /src/dxr3/dxr3_decode_spu.c | |
parent | 62a669d9f04e83debe729347617a935707badc7e (diff) | |
download | xine-lib-81c4665ec233961b07544445b3e21b99fe11c734.tar.gz xine-lib-81c4665ec233961b07544445b3e21b99fe11c734.tar.bz2 |
Add CLOEXEC flag to DXR3 plugin's descriptors.
Diffstat (limited to 'src/dxr3/dxr3_decode_spu.c')
-rw-r--r-- | src/dxr3/dxr3_decode_spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c index 683666d21..8789ffa11 100644 --- a/src/dxr3/dxr3_decode_spu.c +++ b/src/dxr3/dxr3_decode_spu.c @@ -257,7 +257,7 @@ static spu_decoder_t *dxr3_spudec_open_plugin(spu_decoder_class_t *class_gen, xi else { /* open dxr3 spu device */ snprintf(tmpstr, sizeof(tmpstr), "/dev/em8300_sp-%d", this->devnum); - if ((this->fd_spu = open(tmpstr, O_WRONLY)) < 0) { + if ((this->fd_spu = open_cloexec(tmpstr, O_WRONLY)) < 0) { xprintf(this->stream->xine, XINE_VERBOSITY_LOG, _("dxr3_decode_spu: Failed to open spu device %s (%s)\n"), tmpstr, strerror(errno)); pthread_mutex_unlock(&this->dxr3_vo->spu_device_lock); |