libavcodec: use avpriv_open()

Signed-off-by: Anton Khirnov <anton@khirnov.net>
pull/37/head
Rémi Denis-Courmont 12 years ago committed by Anton Khirnov
parent 880391ed2d
commit fee9db1fdf
  1. 3
      libavcodec/libxvid_rc.c

@ -28,6 +28,7 @@
#endif
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "avcodec.h"
#include "libxvid.h"
#include "mpegvideo.h"
@ -54,7 +55,7 @@ int ff_tempfile(const char *prefix, char **filename) {
return -1;
}
#if !HAVE_MKSTEMP
fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
fd = avpriv_open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
#else
snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
fd = mkstemp(*filename);

Loading…
Cancel
Save