Title: [226423] trunk/Source/WebKit
Revision
226423
Author
[email protected]
Date
2018-01-04 14:33:01 -0800 (Thu, 04 Jan 2018)

Log Message

NetworkProcess cache files use functions from unistd.h without explicitly including it
https://bugs.webkit.org/show_bug.cgi?id=181261

Patch by Stephan Szabo <[email protected]> on 2018-01-04
Reviewed by Alex Christensen.

* NetworkProcess/cache/NetworkCacheBlobStorage.cpp:
* NetworkProcess/cache/NetworkCacheData.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (226422 => 226423)


--- trunk/Source/WebKit/ChangeLog	2018-01-04 21:53:37 UTC (rev 226422)
+++ trunk/Source/WebKit/ChangeLog	2018-01-04 22:33:01 UTC (rev 226423)
@@ -1,3 +1,13 @@
+2018-01-04  Stephan Szabo  <[email protected]>
+
+        NetworkProcess cache files use functions from unistd.h without explicitly including it
+        https://bugs.webkit.org/show_bug.cgi?id=181261
+
+        Reviewed by Alex Christensen.
+
+        * NetworkProcess/cache/NetworkCacheBlobStorage.cpp:
+        * NetworkProcess/cache/NetworkCacheData.cpp:
+
 2018-01-04  Keith Rollin  <[email protected]>
 
         Add commas

Modified: trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheBlobStorage.cpp (226422 => 226423)


--- trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheBlobStorage.cpp	2018-01-04 21:53:37 UTC (rev 226422)
+++ trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheBlobStorage.cpp	2018-01-04 22:33:01 UTC (rev 226423)
@@ -32,6 +32,7 @@
 #include <fcntl.h>
 #include <sys/mman.h>
 #include <sys/stat.h>
+#include <unistd.h>
 #include <wtf/RunLoop.h>
 #include <wtf/SHA1.h>
 

Modified: trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheData.cpp (226422 => 226423)


--- trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheData.cpp	2018-01-04 21:53:37 UTC (rev 226422)
+++ trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheData.cpp	2018-01-04 22:33:01 UTC (rev 226423)
@@ -30,6 +30,7 @@
 #include <fcntl.h>
 #include <sys/mman.h>
 #include <sys/stat.h>
+#include <unistd.h>
 #include <wtf/CryptographicallyRandomNumber.h>
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to