Search:
Login
Help/Guide
About Trac
Register
Forgot your password?
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Next Change
→
Changeset
1497:100b0368eff6
for
buffy.c
View differences
inline
side by side
Show
lines around each change
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
2000-02-07 04:52:51 (
9 years
ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:
Fix a NULL pointer deference.
Files:
1 modified
buffy.c
(modified)
(
1 diff
)
Legend:
Unmodified
Added
Removed
buffy.c
r1423
r1497
119
119
return 0;
120
120
121
f = fopen (path, "rb");
122
rc = test_last_status_new (f);
123
fclose (f);
121
if ((f = fopen (path, "rb")))
122
{
123
rc = test_last_status_new (f);
124
fclose (f);
125
}
124
126
125
127
return rc;
Download in other formats:
Unified Diff
Zip Archive