This is the mail archive of the cygwin-xfree@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Eterm


Well, It doesn't look like something easy for me to chop out..   Here's the
error I'm getting, and the piece of code:

ERROR:

----------------------------------------------------------------------------
---------------------------------------------------------
Program received signal SIGSEGV, Segmentation fault.
0x40abd9 in Create_Windows (argc=1, argv=0xa041380) at command.c:5454
5454      for (i = 0; i < (Xdepth <= 2 ? 2 : NRS_COLORS); i++) {
----------------------------------------------------------------------------
---------------------------------------------------------

CODE:

----------------------------------------------------------------------------
---------------------------------------------------------
  /*
   * grab colors before netscape does
   */
  for (i = 0; i < (Xdepth <= 2 ? 2 : NRS_COLORS); i++) {

    XColor xcol;
    unsigned char found_color;

    if (!rs_color[i])
      continue;

    if (!XParseColor(Xdisplay, Xcmap, rs_color[i], &xcol)) {
      print_warning("Unable to resolve \"%s\" as a color name.  Falling back
on \"%s\".",
                    rs_color[i], def_colorName[i] ? def_colorName[i] :
"(nil)");
      rs_color[i] = def_colorName[i];
      if (!rs_color[i])
        continue;
   
----------------------------------------------------------------------------
---------------------------------------------------------------------------

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]