diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-09-29 12:56:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-09-29 12:56:10 +0000 |
commit | 47e4450944184f87f5eea01f767b249620ff2210 (patch) | |
tree | c15edd175927ba0ede24735ee58686de1f47645c /main/webkit/cve-2010-3115.patch | |
parent | fcc956ac58ab08d5edab02c07afce2fae8f34697 (diff) | |
download | aports-47e4450944184f87f5eea01f767b249620ff2210.tar.bz2 aports-47e4450944184f87f5eea01f767b249620ff2210.tar.xz |
main/webkit: add 7 of cve patches
Diffstat (limited to 'main/webkit/cve-2010-3115.patch')
-rw-r--r-- | main/webkit/cve-2010-3115.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/webkit/cve-2010-3115.patch b/main/webkit/cve-2010-3115.patch new file mode 100644 index 000000000..84661767f --- /dev/null +++ b/main/webkit/cve-2010-3115.patch @@ -0,0 +1,16 @@ +description: fix cve-2010-3115 +author: Michael Gilbert <michael.s.gilbert@gmail.com> +origin: http://trac.webkit.org/changeset/63925 +Index: webkit-1.2.4/WebCore/page/History.cpp +=================================================================== +--- webkit-1.2.4.orig/WebCore/page/History.cpp 2010-09-03 16:12:23.000000000 -0400 ++++ webkit-1.2.4/WebCore/page/History.cpp 2010-09-06 22:08:52.000000000 -0400 +@@ -82,7 +82,7 @@ + + KURL History::urlForState(const String& urlString) + { +- KURL baseURL = m_frame->loader()->baseURL(); ++ KURL baseURL = m_frame->document()->url(); + if (urlString.isEmpty()) + return baseURL; + |