And of course, we shouldn't test newArea->cache_type before it was set...

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20283 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-03-01 13:58:34 +00:00
parent 528e40c07d
commit 00be6a4ccb
1 changed files with 1 additions and 1 deletions

View File

@ -1343,7 +1343,7 @@ vm_clone_area(team_id team, const char *name, void **address, uint32 addressSpec
}
if (status == B_OK && newArea->wiring == B_FULL_LOCK) {
// we need to map in everything at this point
if (newArea->cache_type == CACHE_TYPE_DEVICE) {
if (sourceArea->cache_type == CACHE_TYPE_DEVICE) {
// we don't have actual pages to map but a physical area
vm_translation_map *map = &sourceArea->address_space->translation_map;
map->ops->lock(map);