Bug 122069 - lokkit -p 53 core dumps
Summary: lokkit -p 53 core dumps
Keywords:
Status: CLOSED DUPLICATE of bug 117183
Alias: None
Product: Fedora
Classification: Fedora
Component: redhat-config-securitylevel
Version: 1
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Brent Fox
QA Contact:
URL: http://download.fedora.redhat.com/pub...
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-04-30 06:31 UTC by Tim Taiwanese Liim
Modified: 2007-11-30 22:10 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-02-21 19:02:53 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Tim Taiwanese Liim 2004-04-30 06:31:04 UTC
Description of problem:
  running "lokkit -p 53" core dumps; it should be able to take
  numeric port.  Problem found and fixed.  Please incorporate
  into source code.

Version-Release number of selected component (if applicable):
  redhat-config-securitylevel-1.2.11-1.src.rpm

How reproducible:
  always, on i386 platform.

Steps to Reproduce:
  1. as root, run "lokkit -p 53"
  
Actual results:
  core dump

Expected results:
  take additional port into Customier/Other Ports.

Additional info:
  how to fix:
   1. line 239:
	  char *ret;
	  struct servent *service;
       should be
     	  char *ret               = NULL;
	  struct servent *service = NULL;
       always good to init pointers to NULL.
   2. line 249
	ret = calloc((orig ? strlen(orig) : 0) + strlen(ret) + 2, sizeof(char));
      should be
	ret = calloc((orig ? strlen(orig) : 0) + strlen(tmp) + 2, sizeof(char));
      the core dump occurs at strlen(ret) as ret was not 
      initialized.

Comment 1 Brent Fox 2004-06-24 19:08:04 UTC

*** This bug has been marked as a duplicate of 117183 ***

Comment 2 Red Hat Bugzilla 2006-02-21 19:02:53 UTC
Changed to 'CLOSED' state since 'RESOLVED' has been deprecated.


Note You need to log in before you can comment on or make changes to this bug.