@@ -94,8 +94,6 @@ func (ta *temperatureArm) getProductNames(system unsafe.Pointer) []string {
94
94
cfStringGetLength := common .GetFunc [common.CFStringGetLengthFunc ](ta .cf , common .CFStringGetLengthSym )
95
95
cfStringGetCString := common .GetFunc [common.CFStringGetCStringFunc ](ta .cf , common .CFStringGetCStringSym )
96
96
97
- var names []string
98
-
99
97
ta .ioHIDEventSystemClientSetMatching (uintptr (system ), uintptr (ta .sensors ))
100
98
matchingsrvs := ta .ioHIDEventSystemClientCopyServices (uintptr (system ))
101
99
@@ -110,18 +108,19 @@ func (ta *temperatureArm) getProductNames(system unsafe.Pointer) []string {
110
108
str := ta .cfStr ("Product" )
111
109
defer ta .cfRelease (uintptr (str ))
112
110
111
+ names := make ([]string , 0 , count )
113
112
for i = 0 ; i < count ; i ++ {
114
113
sc := ta .cfArrayGetValueAtIndex (uintptr (matchingsrvs ), i )
115
114
name := ioHIDServiceClientCopyProperty (uintptr (sc ), uintptr (str ))
116
115
117
116
if name != nil {
118
- length := cfStringGetLength (uintptr (name )) + 1 // include null terminator
119
- buf := make ([]byte , length ) // allocate buffer with full length
120
- cfStringGetCString (uintptr (name ), & buf [0 ], length , common .KCFStringEncodingUTF8 )
117
+ buf := common .NewCStr (cfStringGetLength (uintptr (name )))
118
+ cfStringGetCString (uintptr (name ), buf , buf .Length (), common .KCFStringEncodingUTF8 )
121
119
122
- names = append (names , string ( buf [: length - 1 ])) // remove null terminator
120
+ names = append (names , buf . GoString ())
123
121
ta .cfRelease (uintptr (name ))
124
122
} else {
123
+ // make sure the number of names and values are consistent
125
124
names = append (names , "noname" )
126
125
}
127
126
}
@@ -166,11 +165,17 @@ func (ta *temperatureArm) matching(page, usage int) {
166
165
cfDictionaryCreate := common .GetFunc [common.CFDictionaryCreateFunc ](ta .cf , common .CFDictionaryCreateSym )
167
166
168
167
pageNum := cfNumberCreate (common .KCFAllocatorDefault , common .KCFNumberIntType , uintptr (unsafe .Pointer (& page )))
168
+ defer ta .cfRelease (uintptr (pageNum ))
169
+
169
170
usageNum := cfNumberCreate (common .KCFAllocatorDefault , common .KCFNumberIntType , uintptr (unsafe .Pointer (& usage )))
171
+ defer ta .cfRelease (uintptr (usageNum ))
170
172
171
173
k1 := ta .cfStr ("PrimaryUsagePage" )
172
174
k2 := ta .cfStr ("PrimaryUsage" )
173
175
176
+ defer ta .cfRelease (uintptr (k1 ))
177
+ defer ta .cfRelease (uintptr (k2 ))
178
+
174
179
keys := []unsafe.Pointer {k1 , k2 }
175
180
values := []unsafe.Pointer {pageNum , usageNum }
176
181
@@ -180,11 +185,6 @@ func (ta *temperatureArm) matching(page, usage int) {
180
185
ta .sensors = cfDictionaryCreate (common .KCFAllocatorDefault , & keys [0 ], & values [0 ], 2 ,
181
186
kCFTypeDictionaryKeyCallBacks ,
182
187
kCFTypeDictionaryValueCallBacks )
183
-
184
- ta .cfRelease (uintptr (pageNum ))
185
- ta .cfRelease (uintptr (usageNum ))
186
- ta .cfRelease (uintptr (k1 ))
187
- ta .cfRelease (uintptr (k2 ))
188
188
}
189
189
190
190
func (ta * temperatureArm ) cfStr (str string ) unsafe.Pointer {
0 commit comments