Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: webkit.patch

Issue 6368094: -Wuninitialized fixes Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit.patch
diff --git a/webkit.patch b/webkit.patch
new file mode 100644
index 0000000000000000000000000000000000000000..8b9f5f7ad5fb8e564bc8b9a9f242cb6e2d8c8791
--- /dev/null
+++ b/webkit.patch
@@ -0,0 +1,13 @@
+diff --git a/Source/WebCore/fileapi/Blob.cpp b/Source/WebCore/fileapi/Blob.cpp
+index 90df3c4..44f3946 100644
+--- a/Source/WebCore/fileapi/Blob.cpp
++++ b/Source/WebCore/fileapi/Blob.cpp
+@@ -68,7 +68,7 @@ PassRefPtr<Blob> Blob::slice(long long start, long long length, const String& co
+ // When we slice a file for the first time, we obtain a snapshot of the file by capturing its current size and modification time.
+ // The modification time will be used to verify if the file has been changed or not, when the underlying data are accessed.
+ long long size;
+- double modificationTime;
++ double modificationTime = 0; // clang prXXXX
+ if (isFile())
+ // FIXME: This involves synchronous file operation. We need to figure out how to make it asynchronous.
+ static_cast<const File*>(this)->captureSnapshot(size, modificationTime);
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698