Overview
Comment: | ChromeOS: Fixed bug in debug message logic being inverted and possible undefined dereference |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
620c0e591e9e2bd3837231972ccce9e2 |
User & Date: | rkeene on 2016-02-26 20:00:41 |
Other Links: | manifest | tags |
Context
2016-02-26
| ||
20:24 | ChromeOS: Updated PIN entry prompt to accept "Escape" to close it check-in: b297c8220e user: rkeene tags: trunk | |
20:00 | ChromeOS: Fixed bug in debug message logic being inverted and possible undefined dereference check-in: 620c0e591e user: rkeene tags: trunk | |
19:55 | ChromeOS: Clean up console logs in non-debug builds check-in: d06273088d user: rkeene tags: trunk | |
Changes
Modified build/chrome/cackey.js from [c88468545b] to [f87cf78128].
︙ | |||
110 111 112 113 114 115 116 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | - + + - - + + + | var nextFunction = null; var chromeCallback = null; if (messageEvent.data.target != "cackey") { return; } |
︙ | |||
211 212 213 214 215 216 217 | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | - + | for (messageIdx = 0; messageIdx < cackeyMessagesToRetry.length; messageIdx++) { var tmpMessageEvent; tmpMessageEvent = cackeyMessagesToRetry[messageIdx]; if (pinWindowPINValue == "") { |
︙ | |||
288 289 290 291 292 293 294 | 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | - + - + | /* * Handler for messages from Chrome related to listing certificates */ function cackeyListCertificates(chromeCallback) { var callbackId; |
︙ | |||
348 349 350 351 352 353 354 | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | - + | digest = new Uint8Array(digestHeader.length + signRequest.digest.byteLength); digest.set(digestHeader, 0); digest.set(new Uint8Array(signRequest.digest), digestHeader.length); delete digestHeader; |
︙ | |||
373 374 375 376 377 378 379 | 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | - + | } cackeyHandle.postMessage(command); cackeyOutstandingCallbackCounter = callbackId; cackeyOutstandingCallbacks[callbackId] = chromeCallback; |
︙ |