num_cset_ptrs(0), num_list_ptrs(0),
f_obj_dict(obj_dict)
{
- int len = MIN(strlen(base_dir), PATHSIZ - 1);
- if ( base_dir )
+ if ( base_dir ) {
+ int len = MIN(strlen(base_dir), PATHSIZ - 1);
*((char *) memcpy (base_path, base_dir, len) + len) = '\0';
- else
+ } else {
base_path[0] = 0;
+ }
- len = MIN(strlen(base_nm), PATHSIZ - 1);
- if ( base_nm )
+ if ( base_nm ) {
+ int len = MIN(strlen(base_nm), PATHSIZ - 1);
*((char *) memcpy (base_name, base_nm, len) + len) = '\0';
- else
+ } else {
base_name[0] = 0;
+ }
- len = MIN(strlen(base_ds), PATHSIZ - 1);
- if ( base_ds )
+ if ( base_ds ) {
+ int len = MIN(strlen(base_ds), PATHSIZ - 1);
*((char *) memcpy (base_desc, base_ds, len) + len) = '\0';
- else
+ } else {
base_desc[0] = 0;
+ }
- len = MIN(strlen(base_uid_str), UIDSIZ - 1);
- if ( base_uid_str )
+ if ( base_uid_str ) {
+ int len = MIN(strlen(base_uid_str), UIDSIZ - 1);
*((char *) memcpy (base_uid, base_uid_str, len) + len) = '\0';
- else
+ } else {
base_uid[0] = 0;
+ }
if ( set_nms )
while ( info_base_set_names[num_cset_ptrs] )
debug(cerr, base_nm);
debug(cerr, base_ds);
*/
- int len = MIN(strlen(base_locale), PATHSIZ - 1);
- if (base_locale)
+ if (base_locale) {
+ int len = MIN(strlen(base_locale), PATHSIZ - 1);
*((char *) memcpy (info_base_locale, base_locale, len) + len) = '\0';
- else
+ } else {
*info_base_locale = 0;
+ }
char* nm ;
int i;
}
DtCvStrVcLenSync(seg);
- if (sibling->handle.string.string)
- free (sibling->handle.string.string);
+ free (sibling->handle.string.string);
if (sibling->client_use) {
delete (SegClientData*)sibling->client_use;
sibling->client_use = NULL;