[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] json: Update jsmn library to get rid of casts
From: |
Daniel Kiper |
Subject: |
Re: [PATCH 2/2] json: Update jsmn library to get rid of casts |
Date: |
Thu, 16 Apr 2020 11:44:09 +0200 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Wed, Apr 15, 2020 at 10:55:51PM +0200, Patrick Steinhardt wrote:
> On Tue, Apr 14, 2020 at 08:19:01PM +0200, Daniel Kiper wrote:
> > On Tue, Apr 07, 2020 at 06:02:29PM +0200, Patrick Steinhardt wrote:
> > > @@ -80,7 +80,7 @@ typedef struct {
> > > * JSON parser. Contains an array of token blocks available. Also stores
> > > * the string being parsed now and current position in that string.
> > > */
> > > -typedef struct {
> > > +typedef struct jsmn_parser {
> >
> > Commit message says about jsmntok only. Here you add jsmn_parser too.
> > If it is needed then it should go into separate patch.
>
> Note that this is pulled in by the upgrade to the newer jsmn library,
> bringing in not only the changes I want to make sure of.
>
> > > unsigned int pos; /* offset in the JSON string */
> > > unsigned int toknext; /* next token to allocate */
> > > int toksuper; /* superior token node, e.g. parent object or
> > > array */
> > > @@ -154,6 +154,9 @@ static int jsmn_parse_primitive(jsmn_parser *parser,
> > > const char *js,
> > > case ']':
> > > case '}':
> > > goto found;
> > > + default:
> > > + /* to quiet a warning from gcc*/
> > > + break;
> >
> > It seems to me that this belongs to separate patch.
>
> See above. This is brought in by the update to 053d3cd. I could split
> this up into two parts, though. First the update of "jsmn.h", followed
> by our own changes in our wrapper. That would probably clear things up?
Yes, please split this patch into separate logical changes and post
as a separate patchset with cover letter saying that this aligns the
GRUB jsmn code with update 053d3cd.
Daniel
[PATCH 2/2] json: Update jsmn library to get rid of casts, Patrick Steinhardt, 2020/04/07