diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2014-06-21 14:40:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-06-23 06:41:47 +0000 |
commit | 96d9a81946ebca7dcaa1a8ae9712ee477a156606 (patch) | |
tree | 88ef61a0abbd1c78ae5f5314997e1420e23cefe8 /testing/motif/16-fix-undefined-use-of-sprintf.patch | |
parent | d28d72a16f7697a518150bf27feb26ac317bce28 (diff) | |
download | aports-96d9a81946ebca7dcaa1a8ae9712ee477a156606.tar.bz2 aports-96d9a81946ebca7dcaa1a8ae9712ee477a156606.tar.xz |
Add motif
Manually sending, since git send-email is being recalcitrant.
This will allow me to package nedit and a number of other things.
From 3077415e704bee5da76d1000e66bb8e25c0248cf Mon Sep 17 00:00:00 2001
From: Isaac Dunham <ibid.ag@gmail.com>
Date: Thu, 19 Jun 2014 05:41:45 +0000
Subject: [PATCH] Add Motif.
Motif is an X intrinsics based toolkit which was once widely used.
This version is built with Xft support, but not PNG, JPEG, or Xprint.
The patches are snarfed from Debian; not all are needed.
Diffstat (limited to 'testing/motif/16-fix-undefined-use-of-sprintf.patch')
-rw-r--r-- | testing/motif/16-fix-undefined-use-of-sprintf.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/motif/16-fix-undefined-use-of-sprintf.patch b/testing/motif/16-fix-undefined-use-of-sprintf.patch new file mode 100644 index 0000000000..95a753e083 --- /dev/null +++ b/testing/motif/16-fix-undefined-use-of-sprintf.patch @@ -0,0 +1,17 @@ +Description: Fix undefined use of sprintf + This patch fixes the undefined use of sprintf when the + source and destination buffers overlap. +Author: Graham Inggs <graham@nerve.org.za> +Forwarded: http://bugs.motifzone.net/show_bug.cgi?id=1628 +Last-Update: 2013-09-24 +--- a/lib/Xm/XmRenderT.c ++++ b/lib/Xm/XmRenderT.c +@@ -2703,7 +2703,7 @@ + number = tlist -> count; + tab = (_XmTab) tlist -> start; + while(number > 0) { +- sprintf(temp, "%s %f %d %d %d, ", temp, tab -> value, ++ sprintf(temp + strlen(temp), " %f %d %d %d, ", tab -> value, + tab -> units, tab -> alignment, tab -> offsetModel); + tab = (_XmTab) tab -> next; + number--; |