자꾸 세그멘테이션 오류가 납니다..ㅠㅠ

feelpassion의 이미지

소켓프로그래밍에서 간단한 채팅 프로그램소스를 보고 귓속말 기능을 추가하려는데 계속 세그멘테이션 에러가 나는군요 문자열 분리가 왜 안되는지 이해를 못하겠습니다....ㅠㅠ
고수님들 도와주세요~

File attachments: 
첨부파일 크기
파일 chat_server.c4.1 KB
파일 chat_client.c1.97 KB
불량청년의 이미지

음... GDB로 우선 디버깅은 해보셨나요?

Quote:
gcc -g -o test test.c

이런식으로 우선 디버깅 모드로 컴파일 하시고

Quote:
gdb ./test

하시면 님의 프로그램을 디버깅 할 수 있게 됩니다.

GDB에 대한 설명은 검색하시면 나옵니다. 한번 해보세요.

세그먼트 폴트에러는 거의 대부분 널포인터를 참조해서

일어납니다. 수고하세요~

H/W가 컴퓨터의 심장이라면 S/W는 컴퓨터의 영혼이다!

dude7853의 이미지

*(name+i) = *(whispstartp); //이름을 저장

이런 식으로 문자를 처리하시는데요.
name은 char의 포인터인데, 가리키는 대상이 없네요ㅡㅡ;

마찬가지로

 
*(sndmessage+j)=*(strstartp);

여기에서도 sndmessage가 포인터인데, 가리키는 대상이 없습니다.
초기화 되지 않은 포인터가 가리키는 메모리, 즉 할당하지 않은 메모리에 쓰니까 세그멘테이션 폴트가 발생하는 것입니다.
만약에 위의 방식으로 사용하시고 싶으시다면 할당한 메모리의 포인터로 초기화하신후 사용하셔야 겠지요.
dude7853의 이미지

그리고 문제가 발생한

			strstartp=whispendp+1; //귓속말의 내용이 시작되는 포인터
			printf("*strstartp = %s\n",strstartp);
			for(i=0;whispstartp<whispendp-1;i++){
				whispstartp++;
				printf("whispstartp=%d\n",whispstartp);
				*(name+i) = *(whispstartp); //이름을 저장
			printf("name[]=%s\n",name); //에러 검출을 위한 출력				
			}
			j=0;
			while( strstartp!=NULL){ //이름을 제외한 보낼 내용을 추출
				*(sndmessage+j)=*(strstartp);
				strstartp+=1;
				j++;
			}
			*(sndmessage+j)=0;

이부분은

			name = whispstartp + 1;
			*whispendp = '\0';
			sndmessage = whispendp + 1;

이렇게 간단하게 하는 것이 더 좋다고 생각합니다. 이 경우는 위에서 질문하신 세그멘테이션 폴트도 발생하지 않습니다.
feelpassion의 이미지

감사합니다~^^
밤새 고생하고 오늘도 하루 종일해서 결국은 해냈습니다^^;;

남으로 창을 내겠소.
밭이 한참갈이 괭이로 파고 호미론 김을 메지요.
구름이 꼬인다 갈리있소. 새들의 노래는 공으로 들으랴오.
강냉이가 익거든 와자셔도 좋소.
왜 사냐건 웃지요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.