server/gdb_server: fix uninitialised variable warning

Caught (breaks build) with clang 3.3.

Change-Id: I5978fe34e82122f62e3d587bcdc45ad12f5e55ca
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/1877
Tested-by: jenkins
Reviewed-by: Xiaofan <xiaofanc@gmail.com>
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
Paul Fertser 2014-01-17 14:10:57 +04:00 committed by Spencer Oliver
parent 164c543799
commit 3e0f34b198
1 changed files with 1 additions and 1 deletions

View File

@ -2205,6 +2205,7 @@ static int gdb_target_description_supported(struct target *target, int *supporte
struct reg **reg_list = NULL;
int reg_list_size = 0;
int feature_list_size = 0;
char **features = NULL;
retval = target_get_gdb_reg_list(target, &reg_list,
&reg_list_size, REG_CLASS_ALL);
@ -2218,7 +2219,6 @@ static int gdb_target_description_supported(struct target *target, int *supporte
goto error;
}
char **features = NULL;
/* Get a list of available target registers features */
retval = get_reg_features_list(target, &features, &feature_list_size, reg_list, reg_list_size);
if (retval != ERROR_OK) {