Package: icedove / 1:52.3.0-4~deb8u2

fixes/Properly-launch-applications-set-in-HOME-.mailcap.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Mike Hommey <glandium@debian.org>
Date: Sat, 22 Nov 2008 09:35:23 +0100
Subject: Properly launch applications set in $HOME/.mailcap

https://bugzilla.mozilla.org/show_bug.cgi?id=444440
---
 mozilla/uriloader/exthandler/unix/nsMIMEInfoUnix.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/mozilla/uriloader/exthandler/unix/nsMIMEInfoUnix.cpp b/mozilla/uriloader/exthandler/unix/nsMIMEInfoUnix.cpp
index e516608..aa66a6c 100644
--- a/mozilla/uriloader/exthandler/unix/nsMIMEInfoUnix.cpp
+++ b/mozilla/uriloader/exthandler/unix/nsMIMEInfoUnix.cpp
@@ -71,6 +71,10 @@ nsMIMEInfoUnix::LaunchDefaultWithFile(nsIFile *aFile)
     return nsMIMEInfoImpl::LaunchDefaultWithFile(aFile);
 
   nsAutoCString nativePath;
+/* the name of the function has changed
+ * the old was the following:
+  nsCAutoString nativePath;
+  */
   aFile->GetNativePath(nativePath);
 
 #if defined(MOZ_ENABLE_CONTENTACTION)