Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SIGSEV when receiving UDP packets > 16/17 bytes #159

Closed
gopherbot opened this issue Nov 13, 2009 · 3 comments
Closed

SIGSEV when receiving UDP packets > 16/17 bytes #159

gopherbot opened this issue Nov 13, 2009 · 3 comments

Comments

@gopherbot
Copy link

by azummo-google@towertech.it:

package main

import (
        "fmt";
        "net";
        "os";
)

func main()
{
        conn, _ := net.ListenPacket("udp", "0.0.0.0:1234");

        fmt.Printf("waiting on %s...\n", conn.LocalAddr().String());

        var buf [1000]byte;

        for {
                n, _, err := conn.ReadFrom(&buf);

                if err == os.EAGAIN {
                        continue;
                }

                fmt.Printf("got %d bytes\n", n);
        }
}

on linux/686, changeset:   4031:b2ccee5ff169


./test &
echo "012345678901234567890" | netcat -u localhost 1234

SIGSEGV: segmentation violation
Faulting address: 0x39383736
PC=0x808198a
...
@rsc
Copy link
Contributor

rsc commented Nov 14, 2009

Comment 1:

Status changed to Accepted.

@rsc
Copy link
Contributor

rsc commented Nov 17, 2009

Comment 2:

Owner changed to r...@golang.org.

Status changed to Started.

@rsc
Copy link
Contributor

rsc commented Nov 17, 2009

Comment 3:

This issue was closed by revision a65bf95.

Status changed to Fixed.

Merged into issue #-.

@golang golang locked and limited conversation to collaborators Jun 24, 2016
@rsc rsc removed their assignment Jun 22, 2022
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants