gtk/updateiconcache.c has:
  guint
  get_image_meta_data_size (Image *image)
  {
    gint i;
    guint len = 0;

    if (image->has_embedded_rect ||
        image->attach_points > 0 ||
        image->n_display_names > 0)
      len += 12;

However, Image is:
  typedef struct
  {
    ...
    int n_attach_points;
    int *attach_points;
    ...
  } Image;

Are you sure you want image->attach_points above and not
image->n_attach_points?

-- 
albert chin ([EMAIL PROTECTED])
_______________________________________________
gtk-devel-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Reply via email to