1. 28 Nov, 2016 - 1 commit
  2. 06 Nov, 2016 - 1 commit
  3. 24 Oct, 2016 - 2 commits
    • Marc Mutz's avatar
      QFixedFrameAllocator: Extract Method scan() · 8206e216
      Marc Mutz authored
      
      The old code used indices to detect when it fell off the
      end of m_chunks and needed to allocate a new chunk, but
      this was opaque to Coverity, which saw the potential for
      m_lastAllocatedChunk == nullptr at the end of the function,
      and thus reported a nullptr deref there.
      
      Fix by moving the scanning of m_chunks into a new method,
      scan(), which more clearly communicates that it never
      returns nullptr, not least because it returns by reference
      instead of pointer.
      
      Coverity-Id: 154279
      Change-Id: I0cfe8fd819bbfc5b03a98b5e9354c0e98a521d34
      Reviewed-by: default avatarPaul Lemire <paul.lemire@kdab.com>
      8206e216
    • Marc Mutz's avatar
      QRenderAspect: remove misleading check · b949f984
      Marc Mutz authored
      
      The check of d->m_renderer against nullptr follows an unconditional
      deref of the same pointer with no intervening code. It must therefore
      be always true.
      
      Remove it.
      
      That done, m_renderer _is_ nullptr after the ctor ran, and before
      the dtor runs (there's a check), so maybe the code should at least
      assert the existence of m_renderer before using it.
      
      Coverity-Id: 156307
      Change-Id: Iacf2c09db1c0a5a55a67cfb6ef2a00652e557d09
      Reviewed-by: default avatarPaul Lemire <paul.lemire@kdab.com>
      b949f984
  4. 19 Oct, 2016 - 1 commit
  5. 05 Oct, 2016 - 1 commit
  6. 04 Oct, 2016 - 1 commit
  7. 12 Aug, 2016 - 1 commit
  8. 20 Jun, 2016 - 2 commits
  9. 19 Jun, 2016 - 1 commit
  10. 07 Jun, 2016 - 1 commit
  11. 19 May, 2016 - 2 commits
  12. 17 May, 2016 - 1 commit
  13. 13 May, 2016 - 1 commit
  14. 10 May, 2016 - 1 commit
  15. 08 May, 2016 - 1 commit
  16. 04 May, 2016 - 1 commit
    • Wieland Hagen's avatar
      Eliminate references to dead memory · 36b6183b
      Wieland Hagen authored
      
      Buffer data upload from QML would not copy the buffer data from
      the JS buffer class, but just store a pointer to it. JS Garbage
      collection may free that memory while it is still used by QBuffer
      
      Task-number: QTBUG-51667
      Change-Id: I366e4e8ad601f058ae022ec4b4978e18eed0e395
      Reviewed-by: default avatarSean Harmer <sean.harmer@kdab.com>
      36b6183b
  17. 28 Apr, 2016 - 1 commit
  18. 19 Apr, 2016 - 2 commits
  19. 12 Apr, 2016 - 3 commits
  20. 08 Apr, 2016 - 1 commit
  21. 30 Mar, 2016 - 1 commit
  22. 22 Mar, 2016 - 2 commits
  23. 21 Mar, 2016 - 2 commits
  24. 17 Mar, 2016 - 1 commit
  25. 03 Mar, 2016 - 2 commits
  26. 01 Mar, 2016 - 1 commit
  27. 25 Feb, 2016 - 5 commits