diff options
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/cx18/cx18-alsa-main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/video/cx18/cx18-alsa-main.c b/drivers/media/video/cx18/cx18-alsa-main.c index 2b72f42e8461..9efabf5e260f 100644 --- a/drivers/media/video/cx18/cx18-alsa-main.c +++ b/drivers/media/video/cx18/cx18-alsa-main.c | |||
@@ -134,7 +134,7 @@ static int __init snd_cx18_card_set_names(struct snd_cx18_card *cxsc) | |||
134 | static int __init snd_cx18_init(struct v4l2_device *v4l2_dev) | 134 | static int __init snd_cx18_init(struct v4l2_device *v4l2_dev) |
135 | { | 135 | { |
136 | struct cx18 *cx = to_cx18(v4l2_dev); | 136 | struct cx18 *cx = to_cx18(v4l2_dev); |
137 | struct snd_card *sc; | 137 | struct snd_card *sc = NULL; |
138 | struct snd_cx18_card *cxsc; | 138 | struct snd_cx18_card *cxsc; |
139 | int ret; | 139 | int ret; |
140 | 140 | ||
@@ -189,7 +189,8 @@ static int __init snd_cx18_init(struct v4l2_device *v4l2_dev) | |||
189 | return 0; | 189 | return 0; |
190 | 190 | ||
191 | err_exit_free: | 191 | err_exit_free: |
192 | snd_card_free(sc); | 192 | if (sc != NULL) |
193 | snd_card_free(sc); | ||
193 | err_exit: | 194 | err_exit: |
194 | return ret; | 195 | return ret; |
195 | } | 196 | } |