Closed
Bug 1484541
Opened 7 years ago
Closed 7 years ago
media/libcubeb/gtest/test_duplex.cpp:45: bad test ?
Categories
(Core :: Audio/Video: cubeb, defect, P3)
Tracking
()
RESOLVED
FIXED
| Tracking | Status | |
|---|---|---|
| firefox61 | --- | affected |
People
(Reporter: dcb314, Assigned: achronop)
References
Details
(Whiteboard: [need info achronop 2018-08-31])
User Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:61.0) Gecko/20100101 Firefox/61.0
Build ID: 20180809102347
Steps to reproduce:
[trunk/media/libcubeb/gtest/test_duplex.cpp:45]: (warning) Logical conjunction always evaluates to false: EXPR <= -1.0 && EXPR >= 1.0.
> [trunk/media/libcubeb/gtest/test_record.cpp:40]: (warning) Logical conjunction always evaluates to false: EXPR <= -1.0 && EXPR >= 1.0.
Actual results:
Source code for the first one is
if (ib[i] <= -1.0 && ib[i] >= 1.0) {
Maybe better code
if (ib[i] <= -1.0 || ib[i] >= 1.0) {
Second one is a duplicate.
Updated•7 years ago
|
Comment 1•7 years ago
|
||
Alex, what do you think about this?
Flags: needinfo?(achronop)
Whiteboard: [need info achronop 2018-08-31]
| Assignee | ||
Comment 2•7 years ago
|
||
This is a valid issue, nice catch!
Assignee: nobody → achronop
Status: UNCONFIRMED → NEW
Ever confirmed: true
Flags: needinfo?(achronop)
Priority: -- → P3
| Assignee | ||
Comment 3•7 years ago
|
||
This is under review in cubeb repo: https://github.com/kinetiknz/cubeb/pull/461
| Assignee | ||
Updated•7 years ago
|
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•