I installed vnc 3.3.6 on my linux box. I found the segmentation fault on running vncviewer. There is an error in function SetupBGR233Map in file vncviewer/colour.c. Variable i is defined as unsigned long. Due to this, statement (line no 392)
for (i = cmapSize-1; i >= 0; i--) gets executed infinite time. and result is Segmentation fault. make variable i as long and compile code. It will work fine. Prince Arora _______________________________________________ VNC-List mailing list [EMAIL PROTECTED] http://www.realvnc.com/mailman/listinfo/vnc-list
