summaryrefslogtreecommitdiff
path: root/src/c/driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/driver.c')
-rw-r--r--src/c/driver.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/src/c/driver.c b/src/c/driver.c
index af3bca08..90538104 100644
--- a/src/c/driver.c
+++ b/src/c/driver.c
@@ -122,22 +122,17 @@ static void *worker(void *data) {
while (*inputs) {
name = inputs;
- if (value = strchr(inputs, '=')) {
+ if (inputs = strchr(inputs, '&'))
+ *inputs++ = 0;
+ else
+ inputs = strchr(name, 0);
+
+ if (value = strchr(name, '=')) {
*value++ = 0;
- if (inputs = strchr(value, '&'))
- *inputs++ = 0;
- else
- inputs = strchr(value, 0);
lw_set_input(ctx, name, value);
}
- else if (inputs = strchr(value, '&')) {
- *inputs++ = 0;
- lw_set_input(ctx, name, "");
- }
- else {
- inputs = strchr(value, 0);
+ else
lw_set_input(ctx, name, "");
- }
}
}