(svn r5090) -Fix: [NPF] broken by me - r4366 (thanks Tron)
authorKUDr
Sun, 04 Jun 2006 00:28:24 +0000
changeset 3944 7b1b00c8541d
parent 3943 d3d5f7b3d3d0
child 3945 19d9295d1d5d
(svn r5090) -Fix: [NPF] broken by me - r4366 (thanks Tron)
aystar.c
--- a/aystar.c	Sat Jun 03 19:23:14 2006 +0000
+++ b/aystar.c	Sun Jun 04 00:28:24 2006 +0000
@@ -149,7 +149,8 @@
 	// Get the best node from OpenList
 	OpenListNode *current = AyStarMain_OpenList_Pop(aystar);
 	// If empty, drop an error
-	if (current == NULL) return AYSTAR_EMPTY_OPENLIST;
+	if (current == NULL)
+		return AYSTAR_EMPTY_OPENLIST;
 
 	// Check for end node and if found, return that code
 	if (aystar->EndNodeCheck(aystar, current) == AYSTAR_FOUND_END_NODE) {
@@ -236,11 +237,12 @@
 	else if (r == AYSTAR_LIMIT_REACHED)
 		printf("[AyStar] Exceeded search_nodes, no path found\n");
 #endif
-	if (r != AYSTAR_STILL_BUSY)
+	if (r != AYSTAR_STILL_BUSY) {
 		/* We're done, clean up */
 		_aystar_stats_open_size = aystar->OpenListHash.size;
 		_aystar_stats_closed_size = aystar->ClosedListHash.size;
 		aystar->clear(aystar);
+	}
 
 	// Check result-value
 	if (r == AYSTAR_FOUND_END_NODE) return AYSTAR_FOUND_END_NODE;