@@ -213,7 +213,21 @@ static int pa_devNN(char *deviceStr, char *_devName, size_t length, int *_devNo)
213
213
while (* cPtr ) {
214
214
cVal = * cPtr ++ ;
215
215
if (cVal == ':' ) break ;
216
- if (((cVal >= ' ' ) && (cVal <= '~' )) && (count < length )) {
216
+
217
+ // See Issue 417.
218
+ // Originally this copied only printable ASCII characters (space thru ~).
219
+ // That is a problem for some locales that use UTF-8 characters in the device name.
220
+ // original: if(((cVal >= ' ') && (cVal <= '~')) && (count < length)) {
221
+
222
+ // At first I was thinking we should keep the test for < ' ' but then I
223
+ // remembered that char type can be signed or unsigned depending on implementation.
224
+ // If characters are signed then a value above 0x7f would be considered negative.
225
+
226
+ // It seems to me that the test for buffer full is off by one.
227
+ // count could reach length, leaving no room for a nul terminator.
228
+ // Compare has been changed so count is limited to length minus 1.
229
+
230
+ if (count < length - 1 ) {
217
231
_devName [count ++ ] = cVal ;
218
232
}
219
233
@@ -1149,7 +1163,7 @@ int audio_put (int a, int c)
1149
1163
static double start = 0 , end = 0 , diff = 0 ;
1150
1164
1151
1165
if (adev [a ].outbuf_len == 0 )
1152
- start = dtime_now ();
1166
+ start = dtime_monotonic ();
1153
1167
#endif
1154
1168
1155
1169
if (c >= 0 ) {
@@ -1178,7 +1192,7 @@ int audio_put (int a, int c)
1178
1192
#ifdef __TIMED__
1179
1193
count += frames ;
1180
1194
if (c < 0 ) { // When the Ax25 frames are flushed.
1181
- end = dtime_now ();
1195
+ end = dtime_monotonic ();
1182
1196
diff = end - start ;
1183
1197
if (count )
1184
1198
dw_printf ("Transfer Time:%3.9f No of Frames:%d Per frame:%3.9f speed:%f\n" ,
0 commit comments