Closed GoogleCodeExporter closed 9 years ago
Hi,
I couldn't reproduce BSOD. Does this occur every time you move a directory with
a file?
Please give me your crash dump file, it is in C:\Windows\minidump.
Thanks,
Original comment by asa...@gmail.com
on 5 Mar 2010 at 10:16
[deleted comment]
[deleted comment]
I can see the bluescreen too.
in Create.c of dokan.sys,
we need to check the length relateFileObject->filename, may be.
if (relatedFileObject->FileName.Length > 0)
{
if (relatedFileObject->FileName.Buffer[relatedFileObject->FileName.Length/sizeof
(WCHAR)-1] != '\\')
{
needBackSlashAfterRelatedFile = TRUE;
fileNameLength += sizeof(WCHAR);
}
}
...
I wonder if you can comment the RelatedFileObject means.
Original comment by digerat...@gmail.com
on 6 Mar 2010 at 7:58
RelatedFileObject is the parent directly of target file. That is sometimes
specified by OS
when opening a file.
relateFileObject->FileName.Length is suspicious. I fixed the repository.
FYI:
You can get PDB file here:
http://code.google.com/p/dokan/source/browse/#svn/release/dokan-0.5.1/wxp/sys
And source:
http://code.google.com/p/dokan/source/browse/#svn/tags/dokan-0.5.1
Original comment by asa...@gmail.com
on 6 Mar 2010 at 8:27
Thanks, works like a charm.
Could you make a build with those changes.
We have problems with uncertified drivers on Windows Vista (test mode is not a
solution unfortunately).
Much appreciated
Original comment by Iwan.Daniel@gmail.com
on 8 Mar 2010 at 12:23
Original issue reported on code.google.com by
Iwan.Daniel@gmail.com
on 5 Mar 2010 at 6:17