Close acquire fence fd after camera capture

Camera capture should close acquire fence. If not, fd remains unused,
which consumes all available fd resources for a process (usually 1024).

Bug: 64214375
Test: Running camera preview of camera sample app for a long time
      should not break preview image.
Exempt-From-Owner-Approval: This is a cherry-pick CL from oc-iot-dev.      
Change-Id: I91d6d3a7b7a95ed5b33c7c73bc85d42f69f4c856
(cherry picked from commit da3c52413a7499a3cd91246b0634f839315ed7b7)
diff --git a/modules/camera/3_4/camera.cpp b/modules/camera/3_4/camera.cpp
index 7f42eef..0f9e378 100644
--- a/modules/camera/3_4/camera.cpp
+++ b/modules/camera/3_4/camera.cpp
@@ -455,6 +455,7 @@
                     __func__, mId, strerror(-res), res);
             return res;
         }
+        ::close(buffer->acquire_fence);
     }
 
     // Acquire fence has been waited upon.