Skip to content
Snippets Groups Projects
Commit 95175832 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Fix potentially uninitialized variable.

parent 26544c07
Branches
Tags
No related merge requests found
......@@ -247,6 +247,7 @@ static void descend_tree_3d(LOGICAL_EL_3D *l_els,
"Oops, unknown vertex %d on element %d!\n", i, in_el);
}
*n = -1;
if((vertex[0] == in_vertex[0] && vertex[1] == in_vertex[1]) ||
(vertex[0] == in_vertex[1] && vertex[1] == in_vertex[0])) {
*n = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment