1. 17 Dec, 2010 3 commits
  2. 16 Dec, 2010 1 commit
  3. 15 Dec, 2010 1 commit
  4. 14 Dec, 2010 12 commits
  5. 13 Dec, 2010 5 commits
  6. 12 Dec, 2010 6 commits
  7. 11 Dec, 2010 8 commits
  8. 10 Dec, 2010 4 commits
    • Pierre Ynard's avatar
      httpd: gracefully handle too large request bodies · 2e1b9e44
      Pierre Ynard authored
      Return a 413 error instead of crashing
      2e1b9e44
    • Pierre Ynard's avatar
      httpd: fix parsing of request body · 8fae1e14
      Pierre Ynard authored
      This caused genuine bugs like mangled bodies and corrupted requests
      (usually leading to 501 errors), and possibly leaks of memory buffer
      of the size of the Content-Length parameter. This is pretty bad since
      crafted requests could easily exhaust the memory and/or trigger a crash.
      Apart from the contents of the buffer of the involved request, there
      doesn't seem to be any possible memory corruption.
      8fae1e14
    • Pierre Ynard's avatar
      httpd: fix grammar in comments · 4c87b90b
      Pierre Ynard authored
      4c87b90b
    • Erwan Tulou's avatar
      qt4: fix skins2 crash after exiting the preferences dialog · 3326e7ef
      Erwan Tulou authored
      This fixes a regression brought by 7f485998
      
      On skins2(tested on Linux), open and close the preferences dialog leads to a
      crash, because the whole qt4 thread terminates unexpectedly.
      
      This is due to setQuitOnLastWindowClosed set to true. As a dialog provider,
      qt4 doesn't run any windows, and therefore just closing the preferences
       dialog box (via accept() or reject()) signals the qt4 thread to quit.
      3326e7ef