1. 23 May, 2012 4 commits
  2. 22 May, 2012 7 commits
  3. 21 May, 2012 1 commit
  4. 16 May, 2012 2 commits
  5. 15 May, 2012 2 commits
  6. 03 May, 2012 2 commits
  7. 02 May, 2012 10 commits
  8. 01 May, 2012 2 commits
  9. 30 Apr, 2012 1 commit
  10. 28 Apr, 2012 3 commits
  11. 27 Apr, 2012 4 commits
  12. 25 Apr, 2012 2 commits
    • Fixed a looming memory corruption bug. · 8b24df9f
      malloc does not initialize the memory to zero, so
      
      sass_context *ctx = sass_new_context()
      
      will create a context with a random value in ctx->output_string.
      
      If sass_free_context(ctx) was called immediately thereafter,
      ctx->output_string would have a random value and the result of the
      free(ctx->output_string) would be undefined.
      
      In the worst case, this corrupts the heap and the process dies much much later.
      
      Also, free isn't delete and mustn't be called with a NULL pointer.
      Lars Immisch authored
    • default statements and "control reaches end of non-void function" · f0f7765d
      One warning remains and should be taken care of properly.
      
      In any case: this patch should be reviewed carefully.
      Lars Immisch authored