Blame SOURCES/ghostscript-9.54.0-covscan-fixes.patch

9469f5
diff -ur ghostscript-9.54.0/base/gdevvec.c ghostscript-9.54.0-patched/base/gdevvec.c
9469f5
--- ghostscript-9.54.0/base/gdevvec.c
9469f5
+++ ghostscript-9.54.0-patched/base/gdevvec.c
9469f5
@@ -643,7 +643,7 @@
9469f5
  */
9469f5
 int
9469f5
 gdev_vector_dopath_segment(gdev_vector_dopath_state_t *state, int pe_op,
9469f5
-                           gs_fixed_point vs[3])
9469f5
+                           gs_fixed_point *vs)
9469f5
 {
9469f5
     gx_device_vector *vdev = state->vdev;
9469f5
     const gs_matrix *const pmat = &state->scale_mat;
9469f5
diff -ur ghostscript-9.54.0/base/gdevvec.h ghostscript-9.54.0-patched/base/gdevvec.h
9469f5
--- ghostscript-9.54.0/base/gdevvec.h
9469f5
+++ ghostscript-9.54.0-patched/base/gdevvec.h
9469f5
@@ -306,7 +306,7 @@
9469f5
 
9469f5
 /* Write a segment of a path using the default implementation. */
9469f5
 int gdev_vector_dopath_segment(gdev_vector_dopath_state_t *state, int pe_op,
9469f5
-                               gs_fixed_point vs[3]);
9469f5
+                               gs_fixed_point *vs);
9469f5
 
9469f5
 typedef struct gdev_vector_path_seg_record_s {
9469f5
     int op;
9469f5
diff -ur ghostscript-9.54.0/base/gxclpath.c ghostscript-9.54.0-patched/base/gxclpath.c
9469f5
--- ghostscript-9.54.0/base/gxclpath.c	2021-03-30 09:40:28.000000000 +0200
9469f5
+++ ghostscript-9.54.0-patched/base/gxclpath.c	2021-11-23 11:06:14.670137576 +0100
9469f5
@@ -715,10 +715,10 @@
9469f5
         } else {
9469f5
             code = set_cmd_put_op(&dp, cldev, pcls, cmd_opv_set_color_space,
9469f5
                 2 + sizeof(clist_icc_color_t));
9469f5
-            memcpy(dp + 2, &(cldev->color_space.icc_info),
9469f5
-                   sizeof(clist_icc_color_t));
9469f5
             if (code < 0)
9469f5
                 return code;
9469f5
+            memcpy(dp + 2, &(cldev->color_space.icc_info),
9469f5
+                   sizeof(clist_icc_color_t));
9469f5
         }
9469f5
         dp[1] = cldev->color_space.byte1;
9469f5
         pcls->known |= color_space_known;
9469f5
diff -ur ghostscript-9.54.0/extract/src/mem.c ghostscript-9.54.0-patched/extract/src/mem.c
9469f5
--- ghostscript-9.54.0/extract/src/mem.c	2021-03-30 09:40:28.000000000 +0200
9469f5
+++ ghostscript-9.54.0-patched/extract/src/mem.c	2021-11-23 11:11:37.293082828 +0100
9469f5
@@ -19,14 +19,24 @@
9469f5
 int extract_vasprintf(extract_alloc_t* alloc, char** out, const char* format, va_list va)
9469f5
 {
9469f5
     int n;
9469f5
-    int n2;
9469f5
+    int ret;
9469f5
     va_list va2;
9469f5
     va_copy(va2, va);
9469f5
     n = vsnprintf(NULL, 0, format, va);
9469f5
-    if (n < 0) return n;
9469f5
-    if (extract_malloc(alloc, out, n + 1)) return -1;
9469f5
-    n2 = vsnprintf(*out, n + 1, format, va2);
9469f5
+    if (n < 0)
9469f5
+    {
9469f5
+        ret = n;
9469f5
+        goto end;
9469f5
+    }
9469f5
+    if (extract_malloc(alloc, out, n + 1))
9469f5
+    {
9469f5
+        ret = -1;
9469f5
+        goto end;
9469f5
+    }
9469f5
+    vsnprintf(*out, n + 1, format, va2);
9469f5
+    ret = 0;
9469f5
+
9469f5
+    end:
9469f5
     va_end(va2);
9469f5
-    assert(n2 == n);
9469f5
-    return n2;
9469f5
+    return ret;
9469f5
 }
9469f5
diff -ur ghostscript-9.54.0/psi/icie.h ghostscript-9.54.0-patched/psi/icie.h
9469f5
--- ghostscript-9.54.0/psi/icie.h	2021-03-30 09:40:28.000000000 +0200
9469f5
+++ ghostscript-9.54.0-patched/psi/icie.h	2021-10-29 12:48:43.405814563 +0200
9469f5
@@ -53,7 +53,7 @@
9469f5
 
9469f5
 /* Get 3 procedures from a dictionary. */
9469f5
 int dict_proc3_param(const gs_memory_t *mem, const ref *pdref,
9469f5
-                     const char *kstr, ref proc3[3]);
9469f5
+                     const char *kstr, ref *proc3);
9469f5
 
9469f5
 /* Get WhitePoint and BlackPoint values. */
9469f5
 int cie_points_param(const gs_memory_t *mem,
9469f5
diff -ur ghostscript-9.54.0/psi/zcie.c ghostscript-9.54.0-patched/psi/zcie.c
9469f5
--- ghostscript-9.54.0/psi/zcie.c	2021-03-30 09:40:28.000000000 +0200
9469f5
+++ ghostscript-9.54.0-patched/psi/zcie.c	2021-11-02 14:36:28.463448728 +0100
9469f5
@@ -144,7 +144,7 @@
9469f5
 
9469f5
 /* Get 3 procedures from a dictionary. */
9469f5
 int
9469f5
-dict_proc3_param(const gs_memory_t *mem, const ref *pdref, const char *kstr, ref proc3[3])
9469f5
+dict_proc3_param(const gs_memory_t *mem, const ref *pdref, const char *kstr, ref *proc3)
9469f5
 {
9469f5
     return dict_proc_array_param(mem, pdref, kstr, 3, proc3);
9469f5
 }