View | Details | Raw Unified | Return to bug 35334
Collapse All | Expand All

(-)a/branches/ucs-4.0/ucs-4.0-1/management/univention-directory-listener/debian/changelog (+6 lines)
 Lines 1-3    Link Here 
1
univention-directory-listener (9.0.2-2) unstable; urgency=low
2
3
  * Bug #35334: Fix entryDN assertion
4
5
 -- Philipp Hahn <hahn@univention.de>  Thu, 19 Mar 2015 07:35:02 +0100
6
1
univention-directory-listener (9.0.2-1) unstable; urgency=medium
7
univention-directory-listener (9.0.2-1) unstable; urgency=medium
2
8
3
  * Do atomic locking on the cache (Bug #34013)
9
  * Do atomic locking on the cache (Bug #34013)
(-)a/branches/ucs-4.0/ucs-4.0-1/management/univention-directory-listener/src/cache_entry.c (-3 / +2 lines)
 Lines 528-536   void cache_entry_set1(CacheEntry *entry, const char *key, const char *value) { Link Here 
528
		attr->values[0] = strdup(value);
528
		attr->values[0] = strdup(value);
529
		assert(attr->values[0]);
529
		assert(attr->values[0]);
530
		attr->length[0] = strlen(value) + 1;
530
		attr->length[0] = strlen(value) + 1;
531
		break;
531
		return;
532
	}
532
	}
533
	assert(i < entry->attribute_count);
533
	cache_entry_add1(entry, key, value);
534
}
534
}
535
535
536
static CacheEntryAttribute *_cache_entry_find_attribute(CacheEntry *entry, LDAPAVA *ava) {
536
static CacheEntryAttribute *_cache_entry_find_attribute(CacheEntry *entry, LDAPAVA *ava) {
537
- 

Return to bug 35334