Bug 187224

Summary: Fix clang static analyzer warnings: Garbage return value
Product: WebKit Reporter: David Kilzer (:ddkilzer) <ddkilzer>
Component: WebKit Misc.Assignee: David Kilzer (:ddkilzer) <ddkilzer>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, cdumez, commit-queue, dbates, eric.carlson, joepeck, msaboff, rniwa, webkit-bug-importer, wenson_hsieh
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://bugs.webkit.org/show_bug.cgi?id=186968
Attachments:
Description Flags
Patch v1 none

Description David Kilzer (:ddkilzer) 2018-06-30 14:41:44 PDT
Fix clang static analyzer warnings: Garbage return value.
Comment 1 Radar WebKit Bug Importer 2018-06-30 14:42:08 PDT
<rdar://problem/41683170>
Comment 2 David Kilzer (:ddkilzer) 2018-06-30 14:47:25 PDT
Created attachment 344023 [details]
Patch v1
Comment 3 Eric Carlson 2018-06-30 16:39:03 PDT
Comment on attachment 344023 [details]
Patch v1

View in context: https://bugs.webkit.org/attachment.cgi?id=344023&action=review

> Source/WebCore/platform/mediastream/MediaConstraints.h:245
>          ValueType max = capabilityMax;

Ditto
Comment 4 WebKit Commit Bot 2018-06-30 17:06:45 PDT
Comment on attachment 344023 [details]
Patch v1

Clearing flags on attachment: 344023

Committed r233403: <https://trac.webkit.org/changeset/233403>
Comment 5 WebKit Commit Bot 2018-06-30 17:06:46 PDT
All reviewed patches have been landed.  Closing bug.
Comment 6 David Kilzer (:ddkilzer) 2018-06-30 17:44:06 PDT
Comment on attachment 344023 [details]
Patch v1

View in context: https://bugs.webkit.org/attachment.cgi?id=344023&action=review

>> Source/WebCore/platform/mediastream/MediaConstraints.h:245
>>          ValueType max = capabilityMax;
> 
> Ditto

What did you mean here?  Did you want me to change these lines to this?

        ValueType min { capabilityMin };
        ValueType max { capabilityMax };
Comment 7 David Kilzer (:ddkilzer) 2018-06-30 19:13:00 PDT
(In reply to David Kilzer (:ddkilzer) from comment #6)
> Comment on attachment 344023 [details]
> Patch v1
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=344023&action=review
> 
> >> Source/WebCore/platform/mediastream/MediaConstraints.h:245
> >>          ValueType max = capabilityMax;
> > 
> > Ditto
> 
> What did you mean here?  Did you want me to change these lines to this?
> 
>         ValueType min { capabilityMin };
>         ValueType max { capabilityMax };

Follow-up fix committed here:

Committed r233406: <https://trac.webkit.org/changeset/233403>