Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 277583 | Differences between
and this patch

Collapse All | Expand All

(-)bincimap-1.2.13final.orig/src/convert.h (-2 / +2 lines)
Lines 112-123 Link Here
112
      unsigned char d = *(i + 1);
112
      unsigned char d = *(i + 1);
113
      
113
      
114
      char *t;
114
      char *t;
115
      if ((t = strchr(hexchars, c)) == 0)
115
      if ((t = (char *) strchr(hexchars, c)) == 0)
116
	return "out of range";
116
	return "out of range";
117
      n = (t - hexchars) << 4;
117
      n = (t - hexchars) << 4;
118
      
118
      
119
      
119
      
120
      if ((t = strchr(hexchars, d)) == 0)
120
      if ((t = (char *) strchr(hexchars, d)) == 0)
121
	return "out of range";
121
	return "out of range";
122
      n += (t - hexchars);
122
      n += (t - hexchars);
123
      
123
      

Return to bug 277583