Merge "Don't TEMP_FAILURE_RETRY on close."

This commit is contained in:
Treehugger Robot 2017-12-29 00:19:21 +00:00 committed by Gerrit Code Review
commit e1c003dc11

View file

@ -103,7 +103,7 @@ V4L2CameraHAL::V4L2CameraHAL() : mCameras(), mCallbacks(NULL) {
}
}
}
TEMP_FAILURE_RETRY(close(fd));
close(fd);
}
}