* Fix sdbpath for long paths

This commit is contained in:
pancake 2011-11-01 12:59:07 +01:00
parent cb053b0cad
commit c5452fb379
2 changed files with 5 additions and 5 deletions

8
TODO
View File

@ -7,6 +7,10 @@
====[[ 0.9 ]]====
* Tracing support for the debugger
- "e cmd.trace=dr=;.dr*;pd 2@eip"
- dca sym.main imp.printf
- dbc
* rasm2 -D must show bytes : opcode
* rasm2 must support binary creation help message or so.. rabin2 integration must be easier
* Add support for 'expect' like foo in rarun2
@ -19,7 +23,6 @@
* cleanup magic database.. too slow for search :(
* use centralized pubsub or memcached to sync data
* rabin2 -z /dev/sda1 TAKES TOO LONG. opening r2 /tmp/fs is SLOW as shit.
* Implement differential distance signature search
* Add support for classes (useful for c++, dex, objc, ...)
- command to add new classes
@ -72,9 +75,6 @@ TODO
}
r_list_commit (b);
* Tracing support for the debugger
- "e cmd.trace=dr=;.dr*;pd 2@eip"
- dca sym.main imp.printf
* If [0-9] keybindings in visual point to same address use same reference

View File

@ -35,7 +35,7 @@ R_API const char *r_syscall_reg(RSyscall *s, int idx, int num) {
}
R_API int r_syscall_setup(RSyscall *ctx, const char *arch, const char *os, int bits) {
char file[64];
char file[256];
if (os == NULL)
os = R_SYS_OS;