X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fovsdb-parser.c;h=77460a8f5fda74a279be3bdc108bc16dbaae7b07;hb=5cc2c261d33f091ea45ff3de22737cf4deb724a2;hp=e1832a999fce0d77cecbcd6e9cf6234bbbd0b2f9;hpb=53d046612df6c88ad8b02c8e99bbfb6e45fe2326;p=openvswitch diff --git a/lib/ovsdb-parser.c b/lib/ovsdb-parser.c index e1832a99..77460a8f 100644 --- a/lib/ovsdb-parser.c +++ b/lib/ovsdb-parser.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2011 Nicira Networks +/* Copyright (c) 2009, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,7 +80,7 @@ ovsdb_parser_member(struct ovsdb_parser *parser, const char *name, return NULL; } - if ((value->type >= 0 && value->type < JSON_N_TYPES + if (((int) value->type >= 0 && value->type < JSON_N_TYPES && types & (1u << value->type)) || (types & OP_ID && value->type == JSON_STRING && ovsdb_parser_is_id(value->u.string)))