mbox

[PULL,v2,0/7] QAPI patches 2016-06-30

Message ID 1467294171-31518-1-git-send-email-armbru@redhat.com
State New
Headers show

Pull-request

git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2016-06-30

Message

Markus Armbruster June 30, 2016, 1:42 p.m. UTC
The following changes since commit 297e8005f88d4360480eaa2c07220fa8853f0448:

  MAINTAINERS: Remove Blue Swirl leftovers (2016-06-30 13:34:49 +0100)

are available in the git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2016-06-30

for you to fetch changes up to db486cc334aafd3dbdaf107388e37fc3d6d3e171:

  qapi: Fix memleak in string visitors on int lists (2016-06-30 15:28:54 +0200)

----------------------------------------------------------------
QAPI patches 2016-06-30

----------------------------------------------------------------
Eric Blake (7):
      json-streamer: Don't leak tokens on incomplete parse
      qobject: Correct JSON lexer grammar comments
      checkpatch: There is no qemu_strtod()
      qapi: Fix crash on missing alternate member of QAPI struct
      range: Create range.c for code that should not be inline
      qapi: Simplify use of range.h
      qapi: Fix memleak in string visitors on int lists

 include/qemu/range.h           | 91 ++++++++++--------------------------------
 qapi/string-input-visitor.c    | 17 ++------
 qapi/string-output-visitor.c   |  4 +-
 qobject/json-lexer.c           | 19 ++++++---
 qobject/json-streamer.c        |  6 +++
 scripts/checkpatch.pl          |  2 +-
 scripts/qapi-visit.py          |  6 +++
 tests/test-qmp-input-visitor.c | 12 ++++++
 util/Makefile.objs             |  1 +
 util/range.c                   | 76 +++++++++++++++++++++++++++++++++++
 10 files changed, 143 insertions(+), 91 deletions(-)
 create mode 100644 util/range.c

Comments

Peter Maydell July 1, 2016, 10:51 a.m. UTC | #1
On 30 June 2016 at 14:42, Markus Armbruster <armbru@redhat.com> wrote:
> The following changes since commit 297e8005f88d4360480eaa2c07220fa8853f0448:
>
>   MAINTAINERS: Remove Blue Swirl leftovers (2016-06-30 13:34:49 +0100)
>
> are available in the git repository at:
>
>   git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2016-06-30
>
> for you to fetch changes up to db486cc334aafd3dbdaf107388e37fc3d6d3e171:
>
>   qapi: Fix memleak in string visitors on int lists (2016-06-30 15:28:54 +0200)
>
> ----------------------------------------------------------------
> QAPI patches 2016-06-30
>
> ----------------------------------------------------------------
> Eric Blake (7):
>       json-streamer: Don't leak tokens on incomplete parse
>       qobject: Correct JSON lexer grammar comments
>       checkpatch: There is no qemu_strtod()
>       qapi: Fix crash on missing alternate member of QAPI struct
>       range: Create range.c for code that should not be inline
>       qapi: Simplify use of range.h
>       qapi: Fix memleak in string visitors on int lists

Applied, thanks.

-- PMM