Преглед изворни кода

fixed parameters check in rtgui_dc_draw_annulus function.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1718 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong пре 13 година
родитељ
комит
a397fef958
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      components/rtgui/common/dc.c

+ 1 - 1
components/rtgui/common/dc.c

@@ -906,7 +906,7 @@ void rtgui_dc_draw_annulus(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_i
 	rt_int16_t temp_val = 0;
 
     /* Sanity check radius */
-	if ((r1 < 0) || (r1 < 0)) return ;
+	if ((r1 < 0) || (r2 < 0)) return ;
 	/* Special case for r=0 - draw a point */
 	if ((r1 == 0) && (r2 == 0))
 	{