1. 10 Apr, 2015 4 commits
  2. 08 Apr, 2015 3 commits
  3. 07 Apr, 2015 7 commits
  4. 03 Apr, 2015 12 commits
  5. 02 Apr, 2015 9 commits
  6. 01 Apr, 2015 4 commits
  7. 31 Mar, 2015 1 commit
    • Philipp A. Hartmann's avatar
      tutorial.cpp: fix insitu parsing (closes #273) · 953cda14
      Philipp A. Hartmann authored
      The insitu parsing example in the tutorial is using a local char
      buffer inside a nested scope.  After leaving the scope, the
      resulting Document object still references this (now invalid)
      memory locations.
      
      Some compilers reuse this space on the stack for other local
      variables later in the function, corrupting the original document.
      
      Drop the local scope to extend the lifetime of the buffer.
      953cda14