Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for null pointer exception #255

Open
wants to merge 1 commit into
base: GLES2-AnchorCenter
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ public Path findPath(final IPathFinderMap<T> pPathFinderMap, final int pXMin, fi
while (openNodes.size() > 0) {
/* The first Node in the open list is the one with the lowest cost. */
currentNode = sortedOpenNodes.poll();
if (currentNode == null) {
break;
}

final long currentNodeID = currentNode.mID;
if (currentNodeID == toNodeID) {
break;
Expand Down Expand Up @@ -151,7 +155,7 @@ public Path findPath(final IPathFinderMap<T> pPathFinderMap, final int pXMin, fi
sortedOpenNodes.clear();

/* Check if a path was found. */
if (currentNode.mID != toNodeID) {
if (currentNode == null || currentNode.mID != toNodeID) {
return null;
}

Expand Down Expand Up @@ -275,4 +279,4 @@ public boolean equals(final Node pNode) {
// Inner and Anonymous Classes
// ===========================================================
}
}
}