summaryrefslogtreecommitdiffstats
path: root/unique_fd.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-11-13We can use fclose directly in std::unique_ptr.Elliott Hughes1-11/+0
It turns out the standard explicitly states that if the pointer is null, the deleter function won't be called. So it doesn't matter that fclose(3) doesn't accept null. Change-Id: I10e6e0d62209ec03ac60e673edd46f32ba279a04
2015-08-10Use unique_ptr and unique_fd to manager FDs.Tao Bao1-0/+73
Clean up leaky file descriptors in uncrypt/uncrypt.cpp. Add unique_fd for open() and unique_file for fopen() to close FDs on destruction. Bug: 21496020 Change-Id: I0174db0de9d5f59cd43b44757b8ef0f5912c91a2