Hallo Welt.

Ich bin eine Internetseite.


Linksammlung

Quizsammlung für den Unterricht von Frau Lüdecke

Auf meiner Webseite Scientific Photos finden Sie Fotos von wissenschaftlichen Geräten. In der Kategorie Scientific Photos: Physics z.B. Fotos von physikalsischen Messinstrumenten, Großforschungseinrichtungen und kleinen Proben. In Scientific Photos: Nature gibt es Fotos aus der Natur, Scientific Photos: People zeigt Personen, insbesondere Wissenschaftler während ihrer Tätigkeiten. Reisefotografie finden Sie in der Kategorie Scientific Photos: Travel.

Meine aktuelle Publikationsliste gibt es unter Publications by Markus Osterhoff.


Heinzelmännchen

Zur Auswertung von Raster-Nano-SAXS-Experimenten, welche wir an Großforschungseinrichtungen wie dem DESY in Hamburg durchführen, habe ich den „Heinzelmännchencluster“ designt, programmiert und in Betrieb genommen.

Informationen gibt es auf meiner IRP-Webseite, weiteres Material auf sci.photos:Special.


Linux Kernel Patches

ALSA: hda: fix possible NULL dereference

c7e69ae6b4ff49edf50180c0a32f3dd9d7967e31 2015-08-24 12:11:39 (GMT)

After a for-loop was replaced by list_for_each_entry, see
Commit bbbc7e8502c9 ("ALSA: hda - Allocate hda_pcm objects dynamically"),
Commit 751e2216899c ("ALSA: hda: fix possible null dereference"),
a possible NULL pointer dereference has been introduced; this patch adds
the NULL check on pcm->pcm, while leaving a potentially superfluous check
on pcm itself untouched.

1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index 5de3c5d..d1a2cb6 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -3172,7 +3172,7 @@ static int add_std_chmaps(struct hda_codec *codec)
struct snd_pcm_chmap *chmap;
const struct snd_pcm_chmap_elem *elem;
- if (!pcm || pcm->own_chmap ||
+ if (!pcm || !pcm->pcm || pcm->own_chmap ||
!hinfo->substreams)
continue;
elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;