Skip to content
Snippets Groups Projects
Commit 20f2303e authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

test_mixer: fix resource leak (unclosed dp)

parent 76c94b08
No related branches found
No related tags found
No related merge requests found
......@@ -199,6 +199,7 @@ bool MixerTest::loadAllTest()
if (snprintf(buf, PATH_MAX, "%s/%s", MIXER_ONBOARD_PATH, result->d_name) >= PATH_MAX) {
PX4_ERR("mixer path too long %s", result->d_name);
closedir(dp);
return false;
}
......@@ -206,6 +207,7 @@ bool MixerTest::loadAllTest()
if (!ret) {
PX4_ERR("Error testing mixer %s", buf);
closedir(dp);
return false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment