提交 a397fef9 编写于 作者: B bernard.xiong

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
上级 6f690368
......@@ -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))
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册