Changeset 480 for trunk/server/source4/lib/com
- Timestamp:
- Aug 2, 2010, 8:16:45 PM (15 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 453,478
- Property svn:mergeinfo changed
-
trunk/server/source4/lib/com/tables.c
r414 r480 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.