[packages] appweb: update to 3.2.2-1 (closes: #6979), add dependency on libpthread...
[packages.git] / net / appweb / patches / 100-compile_fix.patch
diff --git a/net/appweb/patches/100-compile_fix.patch b/net/appweb/patches/100-compile_fix.patch
deleted file mode 100644 (file)
index 8e53263..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/src/ejs/ejsLib.c
-+++ b/src/ejs/ejsLib.c
-@@ -21544,11 +21544,13 @@ EjsVar *ejsThrowInternalError(Ejs *ejs, 
- EjsVar *ejsThrowMemoryError(Ejs *ejs)
- {
-+    va_list     fmtArgs;
-+
-     /*
-      *  Don't do double exceptions for memory errors
-      */
-     if (ejs->exception == 0) {
--        return ejsCreateException(ejs, ES_MemoryError, 0, 0);
-+        return ejsCreateException(ejs, ES_MemoryError, NULL, fmtArgs);
-     }
-     return ejs->exception;
- }