void-packages/srcpkgs/freedroidClassic/patches/patch-SDL_rotozoom.c.diff
Đoàn Trần Công Danh be5369a0cb srcpkgs/f*: convert patches to -Np1
* fpc is kept at -Np0

```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

37 lines
1.1 KiB
Diff

--- a/src/SDL_rotozoom.c 2003-08-07 19:01:16.000000000 +0200
+++ b/src/SDL_rotozoom.c 2018-01-17 21:30:09.576536782 +0100
@@ -11,6 +11,7 @@
#endif
#include "SDL_rotozoom.h"
+#include "proto.h"
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
@@ -49,10 +50,10 @@
/*
* Allocate memory for row increments
*/
- if ((sax = (int *) MyMalloc((dst->w + 1) * sizeof(Uint32))) == NULL) {
+ if ((sax = (int *)(intptr_t) MyMalloc((dst->w + 1) * sizeof(Uint32))) == (void*)0) {
return (-1);
}
- if ((say = (int *) MyMalloc((dst->h + 1) * sizeof(Uint32))) == NULL) {
+ if ((say = (int *)(intptr_t) MyMalloc((dst->h + 1) * sizeof(Uint32))) == NULL) {
free(sax);
return (-1);
}
@@ -224,10 +225,10 @@
/*
* Allocate memory for row increments
*/
- if ((sax = (Uint32 *) MyMalloc(dst->w * sizeof(Uint32))) == NULL) {
+ if ((sax = (Uint32 *)(uintptr_t) MyMalloc(dst->w * sizeof(Uint32))) == NULL) {
return (-1);
}
- if ((say = (Uint32 *) MyMalloc(dst->h * sizeof(Uint32))) == NULL) {
+ if ((say = (Uint32 *)(uintptr_t) MyMalloc(dst->h * sizeof(Uint32))) == NULL) {
if (sax != NULL) {
free(sax);
}