This website works better with JavaScript.
Home
Explore
Help
Sign In
yigitcolakoglu
/
mconnect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
device: incorrect channel null check
bboozzoo/device-cache
Maciek Borzecki
10 years ago
parent
7c3dc91074
commit
f31bdf1012
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/device.vala
+ 1
- 1
src/device.vala
View File
@ -137,7 +137,7 @@ class Device : Object {
}
public void deactivate() {
if (_channel
=
= null)
if (_channel
!
= null)
_channel.close.begin();
_channel = null;
}
Write
Preview
Loading…
Cancel
Save