Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 182005
b: refs/heads/master
c: 44961a0
h: refs/heads/master
i:
  182003: a10590f
v: v3
  • Loading branch information
Dominik Brodowski committed Feb 17, 2010
1 parent bdfc703 commit f8b4920
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3bfc96ef7366aa996fb8286a36f3333a3b4ff25
refs/heads/master: 44961a03adbf16d872f0b83ec848d0759516d33f
19 changes: 14 additions & 5 deletions trunk/drivers/pcmcia/ds.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,11 @@ static void pcmcia_release_function(struct kref *ref)
static void pcmcia_release_dev(struct device *dev)
{
struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
int i;
dev_dbg(dev, "releasing device\n");
pcmcia_put_socket(p_dev->socket);
for (i = 0; i < 4; i++)
kfree(p_dev->prod_id[i]);
kfree(p_dev->devname);
kref_put(&p_dev->function_config->ref, pcmcia_release_function);
kfree(p_dev);
Expand Down Expand Up @@ -450,20 +453,23 @@ static int pcmcia_device_query(struct pcmcia_device *p_dev)
for (i = 0; i < min_t(unsigned int, 4, vers1->ns); i++) {
char *tmp;
unsigned int length;
char *new;

tmp = vers1->str + vers1->ofs[i];

length = strlen(tmp) + 1;
if ((length < 2) || (length > 255))
continue;

p_dev->prod_id[i] = kmalloc(sizeof(char) * length,
GFP_KERNEL);
if (!p_dev->prod_id[i])
new = kmalloc(sizeof(char) * length, GFP_KERNEL);
if (!new)
continue;

p_dev->prod_id[i] = strncpy(p_dev->prod_id[i],
tmp, length);
new = strncpy(new, tmp, length);

tmp = p_dev->prod_id[i];
p_dev->prod_id[i] = new;
kfree(tmp);
}
mutex_unlock(&p_dev->socket->ops_mutex);
}
Expand All @@ -485,6 +491,7 @@ static DEFINE_MUTEX(device_add_lock);
struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
{
struct pcmcia_device *p_dev, *tmp_dev;
int i;

s = pcmcia_get_socket(s);
if (!s)
Expand Down Expand Up @@ -575,6 +582,8 @@ struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, unsigned int fu
s->device_count--;
mutex_unlock(&s->ops_mutex);

for (i = 0; i < 4; i++)
kfree(p_dev->prod_id[i]);
kfree(p_dev->devname);
kfree(p_dev);
err_put:
Expand Down

0 comments on commit f8b4920

Please sign in to comment.