Changeset 206003 in webkit


Ignore:
Timestamp:
Sep 15, 2016 4:38:43 PM (8 years ago)
Author:
andersca@apple.com
Message:

Actually assign the decoded enum value to the output value
https://bugs.webkit.org/show_bug.cgi?id=162042

Reviewed by Brady Eidson.

  • Platform/IPC/Decoder.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r206000 r206003  
     12016-09-15  Anders Carlsson  <andersca@apple.com>
     2
     3        Actually assign the decoded enum value to the output value
     4        https://bugs.webkit.org/show_bug.cgi?id=162042
     5
     6        Reviewed by Brady Eidson.
     7
     8        * Platform/IPC/Decoder.h:
     9
    1102016-09-15  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebKit2/Platform/IPC/Decoder.h

    r204977 r206003  
    9494            return false;
    9595
     96        e = static_cast<E>(value);
    9697        return true;
    9798    }
Note: See TracChangeset for help on using the changeset viewer.