Custom Query (981 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 981)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#1324 fixed call to handle_trickle_init() from sched/trickle_handler.cpp fails davea Christian Beer
Description

The parsing of command line arguments in trickle_handler.cpp is passing on the correct arguments but the wrong number of arguments to the custom handle_trickle_init(). This patch corrects this:

diff --git a/sched/trickle_handler.cpp b/sched/trickle_handler.cpp
index c365e48..b04f4f2 100644
--- a/sched/trickle_handler.cpp
+++ b/sched/trickle_handler.cpp
@@ -168,6 +168,7 @@ int main(int argc, char** argv) {
     }
 
     argv[j] = 0;
+    argc = j;
     retval = handle_trickle_init(argc, argv);
     if (retval) exit(1);
#1323 fixed GUI cant read devices status Joachim Joachim
Description

On Nexus S.

See attached log.

Reported by Ara on PlayStore? list, 10th of August.

#1322 worksforme prepopulate email addr in add project form joachim davea
Description

Save the last email used to attach to a project, and prepopulate that field next time. (Don't use for WCG, which doesn't use email addr)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.