mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
ANDROID: Fix assertion fault and missing initializer
This commit is contained in:
parent
07a4a5cddb
commit
6c248275c8
@ -280,7 +280,7 @@ AndroidSAFFilesystemNode::AndroidSAFFilesystemNode(jobject safTree, jobject safP
|
||||
|
||||
// We need the custom copy constructor because of the reference
|
||||
AndroidSAFFilesystemNode::AndroidSAFFilesystemNode(const AndroidSAFFilesystemNode &node)
|
||||
: AbstractFSNode(), _safNode(nullptr) {
|
||||
: AbstractFSNode(), _safNode(nullptr), _safParent(nullptr) {
|
||||
|
||||
JNIEnv *env = JNI::getEnv();
|
||||
|
||||
@ -410,7 +410,7 @@ bool AndroidSAFFilesystemNode::getChildren(AbstractFSList &myList, ListMode mode
|
||||
|
||||
AbstractFSNode *AndroidSAFFilesystemNode::getParent() const {
|
||||
assert(_safTree != nullptr);
|
||||
assert(_safNode != nullptr);
|
||||
// No need to check for _safNode: if node doesn't exist yet parent is its parent
|
||||
|
||||
if (_safParent) {
|
||||
return new AndroidSAFFilesystemNode(_safTree, _safParent);
|
||||
|
Loading…
x
Reference in New Issue
Block a user