Browse Source
Merge pull request #648 from MarcT512/rbf
Fix "may be used uninitialized" Release build failure
tags/json-c-0.15-20200726
Eric Hawicz
GitHub
5 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
json_object.c
|
@@ -735,7 +735,7 @@ struct json_object *json_object_new_int(int32_t i) |
|
|
|
|
|
|
|
|
int32_t json_object_get_int(const struct json_object *jso) |
|
|
int32_t json_object_get_int(const struct json_object *jso) |
|
|
{ |
|
|
{ |
|
|
int64_t cint64; |
|
|
|
|
|
|
|
|
int64_t cint64=0; |
|
|
double cdouble; |
|
|
double cdouble; |
|
|
enum json_type o_type; |
|
|
enum json_type o_type; |
|
|
|
|
|
|
|
|