diff options
author | Nick White <arch@njw.me.uk> | 2007-03-04 23:42:25 +0000 |
---|---|---|
committer | Nick White <arch@njw.me.uk> | 2007-03-04 23:42:25 +0000 |
commit | 9548ce6885325c0772cf3d83ad40076844d4d846 (patch) | |
tree | 20686cef1c437ee8badc1347b819020dd2eaacb7 /getht.c | |
parent | fd2024792f768e6c347c345468c84b152a62bb11 (diff) |
Fixed bug causing segfault if -a -n/m were passed together
Issue structure was passed incorrectly to parsemedia
Fixed fill correct issue(s) if it already exists
Added default no_of_media to -1
git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-4
Diffstat (limited to 'getht.c')
-rw-r--r-- | getht.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -191,7 +191,7 @@ int main(int argc, char *argv[]) med * cur_media; int newest; - issue = parsemedia(media_xml, &issue, &no_of_issues); + issue = parsemedia(media_xml, issue, &no_of_issues); if(downlatestmedia) { |