0ab598f59e
* MFSA 2013-21/CVE-2013-0783 Miscellaneous memory safety hazards * MFSA 2013-24/CVE-2013-0773 (bmo#809652) Web content bypass of COW and SOW security wrappers * MFSA 2013-25/CVE-2013-0774 (bmo#827193) Privacy leak in JavaScript Workers * MFSA 2013-26/CVE-2013-0775 (bmo#831095) Use-after-free in nsImageLoadingContent * MFSA 2013-27/CVE-2013-0776 (bmo#796475) Phishing on HTTPS connection through malicious proxy * MFSA 2013-28/CVE-2013-0780/CVE-2013-0782 Use-after-free, out of bounds read, and buffer overflow issues found using Address Sanitizer OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=207
49 lines
1.0 KiB
Diff
49 lines
1.0 KiB
Diff
# HG changeset patch
|
|
# Parent 354e161f21ba8fa67aa9f140c2bcdf3b1213abda
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
diff --git a/ipc/src/Makefile.enig b/ipc/src/Makefile.enig
|
|
--- a/ipc/src/Makefile.enig
|
|
+++ b/ipc/src/Makefile.enig
|
|
@@ -57,17 +57,17 @@ objfiles = subprocess.$(OBJ_SUFF)
|
|
libname = $(DLL_PREFIX)subprocess$(DLL_SUFFIX)
|
|
|
|
all: libs
|
|
|
|
libs: source
|
|
$(CC) $(LDFLAGS) -o $(libname) $(objfiles)
|
|
|
|
source: $(source)
|
|
- $(CC) $(CFLAGS) -Wno-return-type-c-linkage -c -o $(objfiles) $^
|
|
+ $(CC) $(CFLAGS) -c -o $(objfiles) $^
|
|
|
|
|
|
clean:
|
|
rm -f $(objfiles) $(libname)
|
|
|
|
tools:
|
|
|
|
export:
|
|
diff --git a/ipc/src/Makefile.in b/ipc/src/Makefile.in
|
|
--- a/ipc/src/Makefile.in
|
|
+++ b/ipc/src/Makefile.in
|
|
@@ -57,17 +57,17 @@ objfiles = subprocess.$(OBJ_SUFF)
|
|
libname = $(DLL_PREFIX)subprocess$(DLL_SUFFIX)
|
|
|
|
all: libs
|
|
|
|
libs: source
|
|
$(CC) $(LDFLAGS) -o $(libname) $(objfiles)
|
|
|
|
source: $(source)
|
|
- $(CC) $(CFLAGS) -Wno-return-type-c-linkage -c -o $(objfiles) $^
|
|
+ $(CC) $(CFLAGS) -c -o $(objfiles) $^
|
|
|
|
|
|
clean:
|
|
rm -f $(objfiles) $(libname)
|
|
|
|
tools:
|
|
|
|
export:
|