|
From: David W. <we...@cw...> - 2001-09-25 19:45:34
|
On Tue, Sep 25, 2001 at 09:37:57PM +0200, Guido de Jong wrote: > Now I don't too much about ReactOS programming, but IMHO Jack was quite plain > about it: > > There is this function called MiReadPage() which you can find in > mm/section.c, lines 252-337. This function does a call to IOReadPage() in > line 290, if the page in cache is not up-to-date. According to Jack it is not > an error if this function returns STATUS_END_OF_FILE, which apparently is not > equal to NT_SUCCESS(). So he added > > && Status != STATUS_END_OF_FILE > > to line 295. IMHO it will have been even better if you add > > && (Status != STATUS_END_OF_FILE) > > in stead. Do you really need a diff for this? > No, but for changes even slightly more complicated a diff is much easier than reading the new and old versions together and trying to figure out what changed. ==================================================== = To remove yourself from this mailing list, go to = = http://www.reactos.com/home/mailing.html = ==================================================== |