anothe useless sizeof(char)

Originally committed as revision 5555 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Reynaldo H. Verdejo Pinochet 19 years ago
parent 3f6d6af66e
commit f2508b1712
  1. 2
      libavcodec/utils.c

@ -1369,7 +1369,7 @@ int av_tempfile(char *prefix, char **filename) {
*filename = tempnam(".", prefix);
#else
size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
*filename = av_malloc(len * sizeof(char));
*filename = av_malloc(len);
#endif
/* -----common section-----*/
if (*filename == NULL) {

Loading…
Cancel
Save