summaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
authormifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-10 19:46:04 +0000
committermifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-10 19:46:04 +0000
commit9c999216b1601d762d4928b201bc7a9d8778f2aa (patch)
treebeaa8678e2e7fed7a963a61caaa7c199370ec9be /src/helper/command.c
parent25ba5741f4fc8dcaec6236402c9ad0a16f13ae02 (diff)
downloadopenocd_libswd-9c999216b1601d762d4928b201bc7a9d8778f2aa.tar.gz
openocd_libswd-9c999216b1601d762d4928b201bc7a9d8778f2aa.tar.bz2
openocd_libswd-9c999216b1601d762d4928b201bc7a9d8778f2aa.tar.xz
openocd_libswd-9c999216b1601d762d4928b201bc7a9d8778f2aa.zip
- Fixing two compiler warnings
- Reducing stack usage for recursive scripts - Do not exit on bogus arguments to reset_config. No longer exit the application upon bogus arguments to reset_config, but return errors. thanks to Øyvind Harboe for these patches. git-svn-id: svn://svn.berlios.de/openocd/trunk@226 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 11284a1c..f69deb49 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -383,7 +383,11 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
{
int retval = ERROR_OK;
int old_command_mode;
- char buffer[4096];
+ char *buffer=malloc(4096);
+ if (buffer==NULL)
+ {
+ return ERROR_INVALID_ARGUMENTS;
+ }
old_command_mode = context->mode;
context->mode = mode;
@@ -422,6 +426,9 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
}
context->mode = old_command_mode;
+
+
+ free(buffer);
return retval;
}