Changeset 478 for vendor/current/source4
- Timestamp:
- Aug 2, 2010, 6:40:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/lib/com/tables.c
r414 r478 52 52 static struct IUnknown *get_com_class_so(TALLOC_CTX *mem_ctx, const struct GUID *clsid) 53 53 { 54 char *mod _name;54 char *module_name; 55 55 char *clsid_str; 56 56 void *mod; … … 58 58 59 59 clsid_str = GUID_string(mem_ctx, clsid); 60 mod _name = talloc_asprintf(mem_ctx, "%s.so", clsid_str);60 module_name = talloc_asprintf(mem_ctx, "%s.so", clsid_str); 61 61 talloc_free(clsid_str); 62 62 63 mod = dlopen(mod _name, 0);63 mod = dlopen(module_name, 0); 64 64 65 65 if (!mod) {
Note:
See TracChangeset
for help on using the changeset viewer.