Age | Commit message (Expand) | Author | Files | Lines |
2007-10-10 | r2669: convert make_user_info() and associated functions from malloc to talloc | Andrew Tridgell | 4 | -56/+70 |
2007-10-10 | r2668: steal the cli pointer into the pipe context so a single free destroys ... | Andrew Tridgell | 1 | -1/+2 |
2007-10-10 | r2667: Remove forward declaration of static function from function. GCC 3.5 a... | Jelmer Vernooij | 1 | -2/+3 |
2007-10-10 | r2664: fixed the final server leak for normal operation. We now get a clean r... | Andrew Tridgell | 2 | -5/+8 |
2007-10-10 | r2663: fix an epmapper server leak - another talloc_realloc(NULL, ) leak | Andrew Tridgell | 1 | -3/+3 |
2007-10-10 | r2662: make --leak-check completely silent if not blocks are allocated | Andrew Tridgell | 1 | -0/+3 |
2007-10-10 | r2661: fixed a client side memory leak in the clilist code. | Andrew Tridgell | 1 | -3/+3 |
2007-10-10 | r2660: - converted the libcli/raw/ library to use talloc_increase_ref_count() | Andrew Tridgell | 24 | -139/+285 |
2007-10-10 | r2659: removed some extraneous debug msgs | Andrew Tridgell | 1 | -3/+0 |
2007-10-10 | r2658: fixed a couple of error codes found with RAW-CONTEXT | Andrew Tridgell | 1 | -2/+2 |
2007-10-10 | r2657: if we are already fully authenticated in session setup then the vuid i... | Andrew Tridgell | 1 | -6/+3 |
2007-10-10 | r2656: moved the seteuid configure tests into the posix backend (these tests | Andrew Tridgell | 3 | -63/+57 |
2007-10-10 | r2655: fixed an error in the shutdown of the sock->transport->session->tree | Andrew Tridgell | 4 | -4/+4 |
2007-10-10 | r2654: fixed some more server memory leaks. We are now down to a single leak | Andrew Tridgell | 9 | -10/+26 |
2007-10-10 | r2653: - data_blob() and data_blob_talloc() now get automatic names | Andrew Tridgell | 3 | -11/+20 |
2007-10-10 | r2650: fixed a memory leak in make_server_info() | Andrew Tridgell | 6 | -9/+10 |
2007-10-10 | r2649: - used some cpp tricks to make users of talloc() and talloc_realloc() | Andrew Tridgell | 5 | -11/+37 |
2007-10-10 | r2648: - use a destructor on struct server_connection to simplify the | Andrew Tridgell | 11 | -66/+51 |
2007-10-10 | r2646: - use a talloc destructor to ensure that sockets from the new socket | Andrew Tridgell | 13 | -38/+43 |
2007-10-10 | r2645: converted the NTLMSSP code to the new style of talloc | Andrew Tridgell | 7 | -107/+68 |
2007-10-10 | r2644: removed an unused function | Andrew Tridgell | 1 | -18/+0 |
2007-10-10 | r2643: convert more of the auth subsyystem to the new talloc methods. This | Andrew Tridgell | 7 | -52/+35 |
2007-10-10 | r2642: smb_iconv_t is a pointer, so checks against -1 errors should use a cast | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r2641: talloc_p() now produces a named talloc pointer, with the name | Andrew Tridgell | 2 | -4/+32 |
2007-10-10 | r2640: valgrind does a great job on some types of memory leaks, but is slow | Andrew Tridgell | 2 | -5/+80 |
2007-10-10 | r2639: we doon't need the valid_table code, so get rid of it | Andrew Tridgell | 1 | -56/+0 |
2007-10-10 | r2638: do lazy initialisation of iconv handles, so we don't initialise a | Andrew Tridgell | 1 | -39/+29 |
2007-10-10 | r2635: mem_ctx cleanups on the lsa and netlogon pipes in the rpc server | Andrew Tridgell | 3 | -50/+19 |
2007-10-10 | r2634: use discard_const_p() in a few places | Andrew Tridgell | 5 | -10/+13 |
2007-10-10 | r2633: fixed some function types in the (unused) print backend | Andrew Tridgell | 1 | -2/+2 |
2007-10-10 | r2632: a new approach to handling const errors. We have had huge numbers of | Andrew Tridgell | 3 | -2/+24 |
2007-10-10 | r2631: the strchr family of functions should not return const strings. | Andrew Tridgell | 1 | -3/+3 |
2007-10-10 | r2630: I missed a couple of places in the gensec talloc conversion | Andrew Tridgell | 1 | -3/+3 |
2007-10-10 | r2629: convert gensec to the new talloc model | Andrew Tridgell | 13 | -45/+40 |
2007-10-10 | r2628: got rid of some warnings and converted a few more places to use hierar... | Andrew Tridgell | 8 | -15/+17 |
2007-10-10 | r2627: use the new talloc capabilities in a bunch more places in the rpc | Andrew Tridgell | 11 | -94/+64 |
2007-10-10 | r2626: the symbol gai_error is defined in /usr/include, so don't use that nam... | Andrew Tridgell | 1 | -4/+4 |
2007-10-10 | r2625: use talloc_p, not talloc when possible (when allocating a structure in... | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r2624: - save some system calls by only trying read/write operations that sel... | Andrew Tridgell | 1 | -1/+11 |
2007-10-10 | r2623: don't do pointer arithmetic on void*, as it doesn't work with non-GNU ... | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r2622: to implement the SOCKET_FLAG_BLOCK option in the socket library we | Andrew Tridgell | 1 | -0/+4 |
2007-10-10 | r2621: - now that the client code is non-blocking, we no longer need | Andrew Tridgell | 3 | -93/+2 |
2007-10-10 | r2618: before we had refererence counts in talloc I added a hack in the | Andrew Tridgell | 5 | -23/+8 |
2007-10-10 | r2617: add connect testing to the rpc test suite | Andrew Tridgell | 1 | -1/+1 |
2007-10-10 | r2616: the cascading nature of talloc_free() can lead to some surprises. In | Andrew Tridgell | 1 | -0/+1 |
2007-10-10 | r2615: fixed a bug in the server side support for CONNECT level security | Andrew Tridgell | 1 | -6/+12 |
2007-10-10 | r2614: support CONNECT level DCE/RPC security in both client and | Andrew Tridgell | 5 | -23/+108 |
2007-10-10 | r2613: use a talloc destructor to ensure that file descriptors are not leaked | Andrew Tridgell | 1 | -2/+26 |
2007-10-10 | r2612: Ensure ntlm_auth always logs to stderr. | Andrew Bartlett | 1 | -2/+2 |
2007-10-10 | r2611: Try to make Samba4's ntlm_auth more consistant with Samba 3.0. | Andrew Bartlett | 1 | -8/+5 |