Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
fa6ebfbb
...
fa6ebfbbc2e007a161f3342e044b360b6f6f95e8
authored
2005-07-26 12:36:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(cond_page_invalidate): Bugfix
1 parent
31f9e897
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/page.c
mail/page.c
View file @
fa6ebfb
...
...
@@ -86,7 +86,7 @@ cond_page_invalidate (size_t value)
if
(
page_map
==
NULL
||
page_avail
==
0
)
return
;
for
(
i
=
0
;
i
<
page_avail
-
1
;
i
++
)
for
(
i
=
0
;
i
<
page_avail
;
i
++
)
if
(
page_map
[
i
]
>=
value
&&
value
<=
page_map
[
i
+
1
])
{
page_invalidate
(
0
);
...
...
Please
register
or
sign in
to post a comment