The lofi driver include file originally declared struct lofi_ioctl with:
char li_filename[MAXPATHLEN + 1];
It should have been changed to
char li_filename[MAXPATHLEN];
but other code has been integrated that perpetuates the "+1". This brings everybody back to the same page.
|