Skip to content
  1. Feb 28, 2018
  2. Feb 27, 2018
  3. Feb 26, 2018
  4. Feb 25, 2018
  5. Feb 14, 2018
  6. Feb 12, 2018
  7. Feb 10, 2018
  8. Feb 09, 2018
  9. Feb 04, 2018
  10. Jan 31, 2018
  11. Jan 30, 2018
  12. Jan 29, 2018
  13. Jan 27, 2018
  14. Jan 24, 2018
  15. Jan 23, 2018
  16. Jan 21, 2018
  17. Jan 20, 2018
    • ulteq's avatar
      Fix the --magick-timeout handling · 394517d1
      ulteq authored
      * Prevents nasty loading loops
      
      * Prevents zombie subprocesses
      
      * Fixes the conversion timeout detection routine
      394517d1
  18. Jan 19, 2018
  19. Jan 17, 2018
  20. Jan 14, 2018
  21. Jan 08, 2018
  22. Jan 07, 2018
    • Max Rees's avatar
      fflush in src/list.c to make tested behavior consistent · 4169eae1
      Max Rees authored
      On glibc, if output is redirected to a file, output will look like this:
      
      touch test/ok/gif
      touch test/ok/jpg
      touch test/ok/png
      touch test/ok/pnm
      test/ok/gif
      test/ok/jpg
      test/ok/png
      test/ok/pnm
      
      On musl, if stdout is redirected to a file, output looks like this:
      
      test/ok/gif
      touch test/ok/gif
      touch test/ok/jpg
      touch test/ok/png
      touch test/ok/pnm
      test/ok/jpg
      test/ok/png
      test/ok/pnm
      
      On glibc and musl, if stdout is interactive, it looks like this:
      
      test/ok/gif
      touch test/ok/gif
      test/ok/jpg
      touch test/ok/jpg
      test/ok/png
      touch test/ok/png
      test/ok/pnm
      touch test/ok/pnm
      
      Adding two fflush calls makes all behavior look like the last example.
      Test cases have been updated accordingly.
      4169eae1
  23. Dec 28, 2017