Added executable flag to memory segments in TDFs
This commit is contained in:
@@ -533,7 +533,8 @@ class AtdfService
|
||||
$bootSectionSegment->size,
|
||||
[]
|
||||
)
|
||||
]
|
||||
],
|
||||
$appSectionSegment->executable
|
||||
)
|
||||
];
|
||||
}
|
||||
@@ -556,7 +557,8 @@ class AtdfService
|
||||
$this->stringService->tryStringToInt($attributes['size'] ?? null),
|
||||
$this->stringService->tryStringToInt($attributes['pagesize'] ?? null),
|
||||
$attributes['rw'] ?? null,
|
||||
[]
|
||||
[],
|
||||
isset($attributes['exec']) ? (bool) $attributes['exec'] : null
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user