Bugzilla – Attachment #2624: patch: free only on existing pin for
bug #2187
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 2187
| Differences between
tweaked patch
and this patch
Collapse All
|
Expand All
(-)
a/ssh-add.c (-1 / +2 lines)
Lines 357-363 update_card(int agent_fd, int add, const char *id)
Link Here
357
add ? "add" : "remove", id, ssh_err(r));
357
add ? "add" : "remove", id, ssh_err(r));
358
ret = -1;
358
ret = -1;
359
}
359
}
360
free(pin);
360
if (pin)
361
free(pin);
361
return ret;
362
return ret;
362
}
363
}
363
364
Return to
bug 2187