New O E M software site

2004-07-19 Thread esken
Huge of O E M Software! You will find everything you need
on our site http://gabydg.biz

Microsoft Windows XP Professional
Retail price: $299.00
Our low Price: $50.00
You Save: $249.00
   
Adobe Photoshop CS V 8.0 PC
Retail price: $609.99
Our low Price: $80.00
You Save: $529.99

Microsoft Office XP Professional
Retail price: $499.95
Our low Price: $100.00
You Save: $399.95

Microsoft Windows 2000 Professional
Retail price: $320.00
Our low Price: $50.00
You Save: $270.00

Adobe Pagemaker V 7.0 PC
Retail price: $599.95
Our low Price: $80.00
You Save: $519.95
   
Adobe Illustrator CS V 11.0 PC
Retail price: $599.95
Our low Price: $80.00
You Save: $519.95

CorelDraw Graphics Suite V 12 PC
Retail price: $349.95
Our low Price: $100.00
You Save: $249.95
   
Microsoft SQL Server 2000
Retail price: $1450.00
Our low Price: $90.00
You Save: $1360.00
 
Symantec Norton Antivirus 2004 Professional
Retail price: $69.95
Our low Price: $15.00
You Save: $54.95

RedHat Linux 9.0
Retail price: $79.99
Our low Price: $60.00
You Save: $19.99

or site is http://ldeege.biz

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


xterm dumping core with BSD's malloc

2004-07-19 Thread Matthieu Herrb
Hi,
several users have reported crashes with xterm on OpenBSD with 
/etc/malloc.conf pointing to 'J' (fill allocated areas with junk).
After some debugging, it appears that the following patch is needed to 
fix that.

--
Matthieu
Index: button.c
===
RCS file: /cvs/OpenBSD/XF4/xc/programs/xterm/button.c,v
retrieving revision 1.1.1.5
diff -u -r1.1.1.5 button.c
--- button.c13 Feb 2004 21:45:49 -  1.1.1.5
+++ button.c14 Jul 2004 17:02:19 -
@@ -2108,7 +2108,8 @@
endCol--;
 }
 
-if (iswide(XTERM_CELL(endRow, endCol - 1))
+if (endCol  1 
+iswide(XTERM_CELL(endRow, endCol - 1))
 XTERM_CELL(endRow, endCol) == HIDDEN_CHAR) {
endCol += 1;
 }


Re: xterm dumping core with BSD's malloc

2004-07-19 Thread Thomas Dickey
On Mon, 19 Jul 2004, Matthieu Herrb wrote:

 Hi,

 several users have reported crashes with xterm on OpenBSD with
 /etc/malloc.conf pointing to 'J' (fill allocated areas with junk).
 After some debugging, it appears that the following patch is needed to
 fix that.

I saw the commit yesterday via google, and applied it to my current
changes for xterm (will probably flush out #193 today or tomorrow).

It's odd - that, and the corner case I cited in my recent changes both
date back to when I integrated Robert Brady's patch in August 2001.
Sometimes it takes a while to notice...

-- 
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel