* Fix sdbpath for long paths 0.8.8
authorpancake@pair
Tue, 01 Nov 2011 12:59:07 +0100
changeset 1860fffcb98cf521
parent 1859 24033fc94ad9
child 1861 6059e72a8728
* Fix sdbpath for long paths
TODO
libr/syscall/syscall.c
     1.1 --- a/TODO	Tue Nov 01 04:37:13 2011 +0100
     1.2 +++ b/TODO	Tue Nov 01 12:59:07 2011 +0100
     1.3 @@ -7,6 +7,10 @@
     1.4  
     1.5  ====[[ 0.9 ]]====
     1.6  
     1.7 +* Tracing support for the debugger
     1.8 +  - "e cmd.trace=dr=;.dr*;pd 2@eip"
     1.9 +  - dca sym.main imp.printf
    1.10 +  - dbc
    1.11  * rasm2 -D must show bytes  : opcode
    1.12  * rasm2 must support binary creation help message or so.. rabin2 integration must be easier
    1.13  * Add support for 'expect' like foo in rarun2
    1.14 @@ -19,7 +23,6 @@
    1.15  * cleanup magic database.. too slow for search :(
    1.16  * use centralized pubsub or memcached to sync data
    1.17  * rabin2 -z /dev/sda1 TAKES TOO LONG. opening r2 /tmp/fs is SLOW as shit.
    1.18 -* Implement differential distance signature search
    1.19  * Add support for classes (useful for c++, dex, objc, ...)
    1.20    - command to add new classes
    1.21  
    1.22 @@ -72,9 +75,6 @@
    1.23    }
    1.24    r_list_commit (b);
    1.25  
    1.26 -* Tracing support for the debugger
    1.27 -  - "e cmd.trace=dr=;.dr*;pd 2@eip"
    1.28 -  - dca sym.main imp.printf
    1.29  * If [0-9] keybindings in visual point to same address use same reference
    1.30  
    1.31  
     2.1 --- a/libr/syscall/syscall.c	Tue Nov 01 04:37:13 2011 +0100
     2.2 +++ b/libr/syscall/syscall.c	Tue Nov 01 12:59:07 2011 +0100
     2.3 @@ -35,7 +35,7 @@
     2.4  }
     2.5  
     2.6  R_API int r_syscall_setup(RSyscall *ctx, const char *arch, const char *os, int bits) {
     2.7 -	char file[64];
     2.8 +	char file[256];
     2.9  
    2.10  	if (os == NULL)
    2.11  		os = R_SYS_OS;