When using driver verifier on NulMRx, I get the following
error:
cmd> net use t: \nulsvr\share
The command completed successfully.
cmd> dir t:
The network name cannot be found.
I found this because my driver was based off of nulmrx,
and I couldn’t run driver verifier on it.
I tracked this down in my own code to the fact that
the np and the driver were including the C string
NUL terminators and for some reason this messes
up only under driver verifier.
By not including the NUL terminators when in the
strings when building unicode strings this error
goes away.
Thanks,
- Joseph