Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6

Pull crypto fix from Herbert Xu:
"Fix a use-after-free crash in the user-space crypto API"

* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: af_alg - fix backlog handling

+3
+3
crypto/af_alg.c
··· 455 455 { 456 456 struct af_alg_completion *completion = req->data; 457 457 458 + if (err == -EINPROGRESS) 459 + return; 460 + 458 461 completion->err = err; 459 462 complete(&completion->completion); 460 463 }