summaryrefslogtreecommitdiffstats
path: root/captcha.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-01-09 17:00:35 +0900
committerFreeArtMan <dos21h@gmail.com>2015-01-09 17:00:35 +0900
commit3e989921c29534d38dbf6009851389fc4f4e226e (patch)
tree0f9e9c97e87c90ce90c596b5a9c0230d063e2952 /captcha.c
parent8522c8656c313a9a3b956b0e6c816a8e54d15b7b (diff)
downloadmicrobbs-3e989921c29534d38dbf6009851389fc4f4e226e.tar.gz
microbbs-3e989921c29534d38dbf6009851389fc4f4e226e.zip
Mem leak fixes, warning fixes
Diffstat (limited to 'captcha.c')
-rw-r--r--captcha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/captcha.c b/captcha.c
index 97fc7d6..9ee89a8 100644
--- a/captcha.c
+++ b/captcha.c
@@ -11,8 +11,8 @@ int captcha_test1( term_screen *ts)
int ret = 0;
const int s_size = 2;
char s[s_size];
- int column, row;
- int c;
+ int column=0, row=0;
+ int c=0;
//setup terminal output position
term_clr_scr( ts );