diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-14 18:13:09 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-14 18:13:09 -0400 |
commit | 757f1700cc23e0d8737a5e2f81d4b065420dce94 (patch) | |
tree | 87cfafea0f563a41839fe248cd4de81e8a8efed1 /include | |
parent | df3de8503f41b7f317167273e636cd722ba31bc1 (diff) |
Fix nasty bugs with longjmp() looping for uw_set_input(); and bad variable indexes for nested JavaScript in jscomp
Diffstat (limited to 'include')
-rw-r--r-- | include/urweb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/urweb.h b/include/urweb.h index 80d2b255..974d3c01 100644 --- a/include/urweb.h +++ b/include/urweb.h @@ -43,8 +43,8 @@ void uw_memstats(uw_context); int uw_send(uw_context, int sock); -void uw_set_input(uw_context, const char *name, char *value); -void uw_set_file_input(uw_context, char *name, uw_Basis_file); +int uw_set_input(uw_context, const char *name, char *value); +int uw_set_file_input(uw_context, char *name, uw_Basis_file); char *uw_get_input(uw_context, int name); char *uw_get_optional_input(uw_context, int name); |