From: Robert W. <rj...@du...> - 2003-05-28 20:25:41
|
> Valgrind, however, thinks that this is a CDROM-related ioctl() call > and issues three errors to me. The log is below. I am using RH8 with > glibc 2.2.93. Looks like this is valgrind core related, not > application error. Could someone look into that? If you look in the header files, CDROMREADTOCENTRY has the same value as I_SRDOPT, which is unfortunate. The only way you could tell these two apart is by knowing that the file descriptor in question is a socket file descriptor. My file descriptor leakage patch already makes note of that (i.e. that a file descriptor is a socket file descriptor) - it shouldn't be too much trouble to modify it the ioctl code to check this. Give me about a day or so and I'll see what I can do. Regards, Robert. |