Compare commits
	
		
			3 Commits
		
	
	
		
			1.0.5
			...
			upgrade-2.
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					6509e5dac8 | ||
| 
						 | 
					6b956c0d3c | ||
| 
						 | 
					3b10a08bad | 
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							@@ -24,7 +24,7 @@ all: debug release pkgconfig
 | 
			
		||||
 | 
			
		||||
VERSION_MAJOR = 1
 | 
			
		||||
VERSION_MINOR = 0
 | 
			
		||||
VERSION_RELEASE = 5
 | 
			
		||||
VERSION_RELEASE = 6
 | 
			
		||||
 | 
			
		||||
# Version for pkg-config
 | 
			
		||||
PCVERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +1,9 @@
 | 
			
		||||
libgbinder (1.0.6) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * Fixed GBinderServiceManager lifecycle management
 | 
			
		||||
 | 
			
		||||
 -- Slava Monich <slava.monich@jolla.com>  Fri, 21 Sep 2018 21:15:28 +0300
 | 
			
		||||
 | 
			
		||||
libgbinder (1.0.5) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * Added double and float support
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
Name: libgbinder
 | 
			
		||||
Version: 1.0.5
 | 
			
		||||
Version: 1.0.6
 | 
			
		||||
Release: 0
 | 
			
		||||
Summary: Binder client library
 | 
			
		||||
Group: Development/Libraries
 | 
			
		||||
 
 | 
			
		||||
@@ -475,7 +475,7 @@ gbinder_servicemanager_dispose(
 | 
			
		||||
     * gbinder_servicemanager_finalize() will not be called
 | 
			
		||||
     * this time around.
 | 
			
		||||
     */
 | 
			
		||||
    if (klass->table && object->ref_count == 0) {
 | 
			
		||||
    if (klass->table && g_atomic_int_get(&object->ref_count) <= 1) {
 | 
			
		||||
        g_hash_table_remove(klass->table, self->dev);
 | 
			
		||||
        if (g_hash_table_size(klass->table) == 0) {
 | 
			
		||||
            g_hash_table_unref(klass->table);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user