I ran into an endless loop in the interface_use_devices_file fucntion in JavaxUsbActive.c. Basically, it is using a size_t instead of a ssize_t for the variable len, which is the result of getline(). If it is unsigned, it will never detect the end of file condition (-1) and loop forever.
The same thing can happen in the config_use_devices_file funciton. Nathan ------------------------------------------------------- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 _______________________________________________ javax-usb-devel mailing list javax-usb-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/javax-usb-devel