Changeset 122


Ignore:
Timestamp:
08/09/08 16:24:01 (16 years ago)
Author:
tim
Message:

fixed an incorrect malloc in range_list.c
minor documentation updates

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/devel/TODO

    r86 r122  
    33If you are interested in contributing to this project, here's a few
    44things you could look into:
     5
     6 - Currently there is no way on the command line to search for exotic
     7   paths/types.  For instance, if reglookup encounters an unknown VK
     8   type, it just prints it out in Hex.  However, if you wanted to search
     9   specifically for that type, there is no way to do it.  Similarly, it
     10   isn't possible to specify certain binary or weird characters in
     11   paths.  Reglookup should take the user path and unquote each path
     12   component using the \xQQ syntax prior to searching.
    513
    614 - Testing, testing, and more testing.  reglookup needs to be tested on
     
    3341
    3442 - It might be nice to have a way to filter results by security
    35    descriptor information.
     43   descriptor information.  Maybe by MTIME as well.
    3644
    3745 - Documentation.  The security descriptor output format needs to be
  • trunk/include/lru_cache.h

    • Property svn:keywords set to Id
    r108 r122  
    1515 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    1616 *
    17  * $Id: $
     17 * $Id$
    1818 */
    1919
  • trunk/include/range_list.h

    • Property svn:keywords set to Id
    r113 r122  
    1515 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    1616 *
    17  * $Id: $
     17 * $Id$
    1818 */
    1919
  • trunk/lib/lru_cache.c

    • Property svn:keywords set to Id
    r112 r122  
    1515 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    1616 *
    17  * $Id: $
     17 * $Id$
    1818 */
    1919
  • trunk/lib/range_list.c

    • Property svn:keywords set to Id
    r116 r122  
    1515 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    1616 *
    17  * $Id: $
     17 * $Id$
    1818 */
    1919
     
    125125  range_list* rl;
    126126
    127   rl = (range_list*)malloc(sizeof(range_list*));
     127  rl = (range_list*)malloc(sizeof(range_list));
    128128  if(rl == NULL)
    129129    return NULL;
Note: See TracChangeset for help on using the changeset viewer.