--- sourceforge.net/trunk/rdesktop/rdesktop.c 2002/08/24 20:04:56 100 +++ sourceforge.net/trunk/rdesktop/rdesktop.c 2002/08/29 14:18:24 103 @@ -234,6 +234,11 @@ width = 800; height = 600; } + else + { + /* make sure width is a multiple of 4 */ + width = (width + 3) & ~3; + } strcpy(title, "rdesktop - "); strncat(title, server, sizeof(title) - sizeof("rdesktop - "));