Title: [131551] trunk/Source/WebKit2
- Revision
- 131551
- Author
- commit-qu...@webkit.org
- Date
- 2012-10-16 22:56:54 -0700 (Tue, 16 Oct 2012)
Log Message
[mac] Fix build break - processPath should be initialized.
https://bugs.webkit.org/show_bug.cgi?id=99541
Unreviewed build fix.
Initialize processPath as nil.
Patch by Dongwoo Joshua Im <dw...@samsung.com> on 2012-10-16
* UIProcess/Launcher/mac/ProcessLauncherMac.mm:
(WebKit::createProcess):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (131550 => 131551)
--- trunk/Source/WebKit2/ChangeLog 2012-10-17 05:44:48 UTC (rev 131550)
+++ trunk/Source/WebKit2/ChangeLog 2012-10-17 05:56:54 UTC (rev 131551)
@@ -1,3 +1,15 @@
+2012-10-16 Dongwoo Joshua Im <dw...@samsung.com>
+
+ [mac] Fix build break - processPath should be initialized.
+ https://bugs.webkit.org/show_bug.cgi?id=99541
+
+ Unreviewed build fix.
+
+ Initialize processPath as nil.
+
+ * UIProcess/Launcher/mac/ProcessLauncherMac.mm:
+ (WebKit::createProcess):
+
2012-10-16 Christophe Dumez <christophe.du...@intel.com>
[EFL][WK2] Add factory methods for refcounted Ewk types
Modified: trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm (131550 => 131551)
--- trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm 2012-10-17 05:44:48 UTC (rev 131550)
+++ trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm 2012-10-17 05:56:54 UTC (rev 131551)
@@ -367,7 +367,7 @@
NSBundle *webKit2Bundle = [NSBundle bundleWithIdentifier:@"com.apple.WebKit2"];
- NSString *processPath;
+ NSString *processPath = nil;
switch(launchOptions.processType) {
case ProcessLauncher::WebProcess:
processPath = [webKit2Bundle pathForAuxiliaryExecutable:@"WebProcess.app"];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes