Changeset 180866 in webkit


Ignore:
Timestamp:
Mar 1, 2015 11:48:55 AM (9 years ago)
Author:
ddkilzer@apple.com
Message:

LayoutTestRealy: Prepend XPC_ to the key, not the value!

Follow-up fix for:

LayoutTestRelay: App environment variables not set for --guard-malloc or --leaks
<http://webkit.org/b/142145>

  • LayoutTestRelay/LayoutTestRelay/LTRelayController.m:

(-[LTRelayController _environmentVariables]): Fix think-o.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r180864 r180866  
     12015-03-01  David Kilzer  <ddkilzer@apple.com>
     2
     3        LayoutTestRealy: Prepend __XPC_ to the key, not the value!
     4
     5        Follow-up fix for:
     6
     7        LayoutTestRelay: App environment variables not set for --guard-malloc or --leaks
     8        <http://webkit.org/b/142145>
     9
     10        * LayoutTestRelay/LayoutTestRelay/LTRelayController.m:
     11        (-[LTRelayController _environmentVariables]): Fix think-o.
     12
    1132015-03-01  David Kilzer  <ddkilzer@apple.com>
    214
  • trunk/Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m

    r180864 r180866  
    219219                NSString *nsValue = [NSString stringWithUTF8String:value];
    220220                [dictionary setObject:nsValue forKey:keyName];
    221                 [dictionary setObject:[@"__XPC_" stringByAppendingString:nsValue] forKey:keyName];
     221                [dictionary setObject:nsValue forKey:[@"__XPC_" stringByAppendingString:keyName]];
    222222            }
    223223        }
Note: See TracChangeset for help on using the changeset viewer.