From 22b0d7df64cdfae8bab6ba8df07a16afd5dbed75 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 26 Mar 2010 23:03:13 +0000 Subject: [PATCH] oops (Thanks to Bert Wesarg for the heads up) --- FunctionBar.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/FunctionBar.c b/FunctionBar.c index 5bd90c1e..ee65333d 100644 --- a/FunctionBar.c +++ b/FunctionBar.c @@ -52,12 +52,14 @@ FunctionBar* FunctionBar_new(const char** functions, const char** keys, int* eve this->functions = malloc(sizeof(char*) * 15); this->keys = malloc(sizeof(char*) * 15); this->events = malloc(sizeof(int) * 15); - for (int i = 0; i < 15 && functions[i]; i++) { + int i = 0; + while (i < 15 && functions[i]) { this->functions[i] = String_copy(functions[i]); this->keys[i] = String_copy(keys[i]); this->events[i] = events[i]; - this->size = i; + i++; } + this->size = i; } else { this->staticData = true; this->functions = (char**)( functions ? functions : FunctionBar_FLabels );