diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-05-17 21:23:25 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-05-17 21:23:25 +0000 |
commit | d59b6f6c38a3e9c229dae40bd6c668be47fe8e48 (patch) | |
tree | d3e248c0abb4d8baf265767d9542537bd1b0d373 /gdb/python/py-auto-load.c | |
parent | 102040f0d08b06980adf402c17b2f039fee7d23c (diff) | |
download | gdb-d59b6f6c38a3e9c229dae40bd6c668be47fe8e48.zip gdb-d59b6f6c38a3e9c229dae40bd6c668be47fe8e48.tar.gz gdb-d59b6f6c38a3e9c229dae40bd6c668be47fe8e48.tar.bz2 |
2010-05-17 Michael Snyder <msnyder@vmware.com>
* python/py-auto-load.c: White space.
* python/py-block.c: White space.
* python/py-breakpoint.c: White space.
* python/py-cmd.c: White space.
* python/py-function.c: White space.
* python/py-lazy-string.c: White space.
* python/py-objfile.c: White space.
* python/py-param.c: White space.
* python/py-prettyprint.c: White space.
* python/py-progspace.c: White space.
* python/py-symtab.c: White space.
* python/python.c: White space.
* python/py-type.c: White space.
* python/py-utils.c: White space.
* python/py-value.c: White space.
Diffstat (limited to 'gdb/python/py-auto-load.c')
-rw-r--r-- | gdb/python/py-auto-load.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/python/py-auto-load.c b/gdb/python/py-auto-load.c index 932ae68..044d968 100644 --- a/gdb/python/py-auto-load.c +++ b/gdb/python/py-auto-load.c @@ -128,6 +128,7 @@ static hashval_t hash_loaded_script_entry (const void *data) { const struct loaded_script_entry *e = data; + return htab_hash_string (e->name); } @@ -138,6 +139,7 @@ eq_loaded_script_entry (const void *a, const void *b) { const struct loaded_script_entry *ea = a; const struct loaded_script_entry *eb = b; + return strcmp (ea->name, eb->name) == 0; } @@ -202,6 +204,7 @@ source_section_scripts (struct objfile *objfile, const char *source_name, if (p == end) { char *buf = alloca (p - file + 1); + memcpy (buf, file, p - file); buf[p - file] = '\0'; warning (_("Non-null-terminated path in %s: %s"), @@ -236,6 +239,7 @@ source_section_scripts (struct objfile *objfile, const char *source_name, if (! in_hash_table) { char *p; + *slot = xmalloc (sizeof (**slot) + strlen (file) + 1 + (opened ? (strlen (full_path) + 1) : 0)); |