-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
39 lines (28 loc) · 1.26 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
- test renaming. someone said it doesnt work
- test drawterm when no auth is present.. does this work? how?
someone has reported that it does.. that also might explain
what capso was seeing.
- some auth botches should indicate auth failure instead
to give better error messages.
ie. when bad user or password causes a bad decrypt...
- need a clear error when auth server is unreachable or not
responding appropriately
- need a clear error when user or password is wrong
- run tests looking for memory leaks and corruption
BUGS:
- ws2utf8 invalid character encountered or other convesion error
in Jorge-Leon's patch, reorted by Georg Lehner
- Assertion failed: x == 0, file d:\ninefs\npfs\npfs\trunk\libnpfs\winthread.c, line 103
int
pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mux)
{
int x, last;
pthread_mutex_lock(&cond->lock);
cond->waiters++;
pthread_mutex_unlock(&cond->lock);
// this does a pthread_mutex_unlock on mux
x = SignalObjectAndWait(mux->handle, cond->queue, INFINITE, FALSE);
assert(x == 0);
- run out of resources copying many files.
memory leak? I fixed one after this last patch, so possibly
already fixed?