Open GoogleCodeExporter opened 9 years ago
I think this is due to the following code in DokanMain, dokan.c (line 162):
} else if (!IsValidDriveLetter((WCHAR)DokanOptions->Version)) {
...
I think this should be:
} else if (!IsValidDriveLetter((WCHAR)DokanOptions->MountPoint[0])) {
...
as it is on line 96.
I cannot build dokan's c library because it requires the Windows DDK, but I
hope maybe this fix (if it is needed) can be incorporated into the next release.
Thanks!
Original comment by mcmichae...@gmail.com
on 26 Jul 2010 at 8:41
Original issue reported on code.google.com by
aik...@gmail.com
on 17 Mar 2009 at 12:08