-
Notifications
You must be signed in to change notification settings - Fork 21
[BUG] unsigned len is set to -1 #151
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Lines 259 to 261 in 2bf00b3
| size_t len = -1; | |
| void *data = metadata->extract(obj, &len); | |
| assert(len != -1); |
Comparing signed and unsigned integers. Here len is unsigned but its set to -1 which causes an overflow.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working