anothe useless sizeof(char)

Originally committed as revision 5555 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2006-06-30 05:53:28 +00:00
parent 3f6d6af66e
commit f2508b1712
1 changed files with 1 additions and 1 deletions

View File

@ -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) {