1. 22 Aug, 2016 1 commit
  2. 21 Aug, 2016 1 commit
  3. 19 Aug, 2016 7 commits
  4. 18 Aug, 2016 10 commits
  5. 17 Aug, 2016 9 commits
  6. 16 Aug, 2016 6 commits
  7. 15 Aug, 2016 3 commits
  8. 14 Aug, 2016 2 commits
  9. 13 Aug, 2016 1 commit
    • tools: use fclose() after fdopen() + add newline · b44c42e8
      Christian Brauner authored
      So far we accidently used close() on the original file descriptor. (After
      fdopen() the original fd is considered private and should not be used anymore.
      The close operations should be performed on the new file handle. We did the
      correct thing on error but not on success.) Using close() on the original fd
      caused "Text file busy" errors and prevented the cloned tmpfs container from
      starting.
      Signed-off-by: 's avatarChristian Brauner <cbrauner@suse.de>